aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/aaa.c
blob: e31fb567c1c597d8c854d5ed34bcba59f7aa7c3d (plain)
1
2
3
4
5
6
7
8
9
10
11
foo (a, b)
{
  int t;
  while (b < 0)
    {
      t = a;
      a = b;
      b = t;
    }
  return a + b;
}