tcc-65816/test/tests/unroll-1.c
2017-06-09 13:52:12 +02: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();
}