cfgexpand: Expand comment on when non-var clobbers can show up
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr96698.c
blob1d141c1dfff78e3391a4f41efe82ba7ff93f7d41
1 /* { dg-do compile } */
3 void test(int a, int* i)
5 for (; a < 5; ++a)
7 int b = 0;
8 int c = 0;
9 for (; b != -11; b--)
10 for (int d = 0; d ==0; d++)
12 *i += c & a;
13 c = b;
18 /* We should be able to vectorize the inner cycle. */
19 /* { dg-final { scan-tree-dump "OUTER LOOP VECTORIZED" "vect" { target vect_int } } } */