/* loop-9.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c89 #endif /* Source: Neil Booth, from PR # 115. */ int false() { return 0; } void testTortureExecute (void) { int count = 0; while (false() || count < -123) ++count; if (count) ASSERT (0); return; }