8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/950906-1.c

17 lines
107 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
g (int i)
{
}
f (int i)
{
g (0);
while ( ({ i--; }) )
g (0);
}
main ()
{
f (10);
exit (0);
}