* gcc.target/i386/pr70021.c: Add -mtune=skylake.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr44144.c
blob8db0f4f3c636b408567bf37ef50743d5c0c07933
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-vectorize -mavx -mtune=generic" } */
4 void
5 foo (char * dest, int xcount, int ycount)
7 int x, y;
8 for (y = 0; y < ycount; y++)
9 for (x = 0; x < xcount; x++)
10 dest[x + y*2] = 0;