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

22 lines
242 B
C

/* Source: Neil Booth, from PR # 115. */
int false()
{
return 0;
}
extern void abort (void);
int main (int argc,char *argv[])
{
int count = 0;
while (false() || count < -123)
++count;
if (count)
abort ();
return 0;
}