Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr51236.c
blob63bfaeeb0ebbcc96846c54ebc83bf43a77f819d5
1 /* { dg-do compile } */
2 /* { dg-options "-O -ftree-vectorize -mavx2" } */
4 long foo (long *p, int i)
6 long x = 0;
8 while (--i)
9 x ^= p[i];
11 return x;