8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/unroll-1.c
Catherine Moore 33b35a8dc4 * gcc.c-torture/execute/unroll-1.c: New test.
From-SVN: r36236
2000-09-07 09:12:24 -04:00

20 lines
202 B
C

inline int
f (int x)
{
return (x + 1);
}
int
main (void)
{
int a = 0 ;
while ( (f(f(f(f(f(f(f(f(f(f(1))))))))))) + a < 12 )
{
a++;
exit (0);
}
if (a != 1)
abort();
}