Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr30970.c
blob96d64e5a9628e0cacc640ba4c9d96e14ccea126a
1 /* { dg-do compile }
2 /* { dg-options "-msse2 -O2 -ftree-vectorize" } */
4 #define N 256
5 int b[N];
7 void test()
8 {
9 int i;
11 for (i = 0; i < N; i++)
12 b[i] = 0;
15 /* { dg-final { scan-assembler-times "pxor" 1 } } */