blob: ad83d32f5e50c580a5f87d09e8558df01bc457cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* 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;
}
|