1 /* PR tree-optimization/71518 */
2 /* { dg-options "-O3" } */
3 
4 int a, *b[9], c, d, e;
5 
6 static int
fn1()7 fn1 ()
8 {
9   for (c = 6; c >= 0; c--)
10     for (d = 0; d < 2; d++)
11       {
12         b[d * 2 + c] = 0;
13         e = a > 1 ? : 0;
14         if (e == 2)
15           return 0;
16       }
17   return 0;
18 }
19 
20 int
main()21 main ()
22 {
23   fn1 ();
24   return 0;
25 }
26