/* pr71335.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif int a; void testTortureExecute (void) { int b = 0; while (a < 0 || b) { b = 0; for (; b < 9; b++) ; } return; }