PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / gen-vect-33.c
blob8cd12da3d8c83f2896b9d165a94c760d7122eab9
1 /* Compiler generates 64-bit stores of zero for this on some targets.
2 Check there is no problem for such case. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -ftree-vectorize" } */
6 void
7 foo (float *dest, int xcount, int ycount)
9 int x, y;
11 for (y = 0; y < ycount; y++)
12 for (x = 0; x < xcount; x++)
13 dest[x + y] = (float) 0;