tcc-65816/test/tests/920612-2.c
2017-06-09 13:52:12 +02:00

16 lines
170 B
C

int i = 0;
int a (int x)
{
while (x)
i++, x--;
return x;
}
main ()
{
#ifndef NO_TRAMPOLINES
if (a (2) != 0)
abort ();
#endif
exit (0);
}