PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / pr71518.c
blob6240ca8f2bfd8725f0048fdf3373157c7d88aaa7
1 /* PR tree-optimization/71518 */
2 /* { dg-options "-O3" } */
4 int a, *b[9], c, d, e;
6 static int
7 fn1 ()
9 for (c = 6; c >= 0; c--)
10 for (d = 0; d < 2; d++)
12 b[d * 2 + c] = 0;
13 e = a > 1 ? : 0;
14 if (e == 2)
15 return 0;
17 return 0;
20 int
21 main ()
23 fn1 ();
24 return 0;