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

25 lines
214 B
C

double
foo (void)
{
return 0.0;
}
void
do_sibcall (void)
{
(void) foo ();
}
int
main (void)
{
double x;
for (x = 0; x < 20; x++)
do_sibcall ();
if (!(x >= 10))
abort ();
exit (0);
}