/* 950607-1.c from the execute part of the gcc torture suite. */ #include #ifdef __SDCC #pragma std_c99 #endif void testTortureExecute (void) { struct { long status; } h; h.status = 0; if (((h.status & 128) == 1) && ((h.status & 32) == 0)) ASSERT (0); return; }