/* 20000313-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #pragma disable_warning 127 #endif void testTortureExecute (void) { long winds = 0; while (winds != 0) { if (*(char *) winds) break; } if (winds == 0 || winds != 0 || *(char *) winds) return; ASSERT (0); }