8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/aaa.c

12 lines
107 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
foo (a, b)
{
int t;
while (b < 0)
{
t = a;
a = b;
b = t;
}
return a + b;
}