/* 991202-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif int x, y; void testTortureExecute (void) { x = 2; y = x; do { x = y; y = 2 * y; } while ( ! ((y - x) >= 20)); return; }