PR tree-optimization/84740
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr69083.c
blobdd8b347333e345495a4b699927cfabb368bd37f9
1 /* PR tree-optimization/69083 */
2 /* { dg-do compile } */
3 /* { dg-additional-options "-O3" } */
5 int d;
6 short f;
8 void
9 foo (int a, int b, int e, short c)
11 for (; e; e++)
13 int j;
14 for (j = 0; j < 3; j++)
16 f = 7 >> b ? a : b;
17 d |= c == 1 ^ 1 == f;