/* pr69097-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #endif /* PR tree-optimization/69097 */ int a, b; unsigned int c; void testTortureExecute (void) { int d = b; b = ~(~a + (~d | b)); a = ~(~c >> b); c = a % b; return; }