/* 20001130-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif static inline int bar(void) { return 1; } static int mem[3]; static int foo(int x) { if (x != 0) return x; mem[x++] = foo(bar()); if (x != 1) ASSERT(0); return 0; } void testTortureExecute (void) { foo(0); return; }