/* 930916-1.c from the execute part of the gcc torture suite. */ #include #ifdef __SDCC #pragma std_c99 #endif void f (unsigned n) { if ((int) n >= 0) ASSERT (0); } void testTortureExecute (void) { unsigned x = ~0; f (x); return; }