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