/* 991216-4.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif /* Test against a problem with loop reversal. */ static void bug(int size, int tries) { int i; int num = 0; while (num < size) { for (i = 1; i < tries; i++) num++; } } void testTortureExecute (void) { bug(5, 10); return; }