blob: ad83d32f5e50c580a5f87d09e8558df01bc457cf [file] [log] [blame]
/* PR tree-optimization/101189 */
static int a, b;
int main() {
int d = 0, e, f = 5;
if (a)
f = 0;
for (; f < 4; f++)
;
e = f ^ -f;
e && d;
if (!e)
e || b;
return 0;
}