/* 20000717-4.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif /* Extracted from gas. Incorrectly generated non-pic code at -O0 for IA-64, which produces linker errors on some operating systems. */ #ifndef __SDCC_pdk14 // Lack of memory struct { int offset; struct slot { int field[6]; } slot[4]; } s; int x () { int toggle = 0; int r = s.slot[0].field[!toggle]; return r; } #endif void testTortureExecute (void) { return; }