/* 20040319-1.c from the execute part of the gcc torture suite. */ #include #ifdef __SDCC #pragma std_c99 #endif int blah (int zzz) { int foo; if (zzz >= 0) return 1; foo = (zzz >= 0 ? (zzz) : -(zzz)); return foo; } void testTortureExecute (void) { if (blah (-1) != 1) ASSERT (0); else return; }