[PATCH 03/11] Handle typedefs for CodeView
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f_cond_move.c
blobca49a585232e10d704aacec0e52066e2a5f3aeab
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -mavx512f -mprefer-vector-width=512" } */
3 /* { dg-final { scan-assembler-times "(?:vpbroadcastd|vmovdqa32)\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)" 8 } } */
5 unsigned int x[128];
6 int y[128];
8 void
9 foo ()
11 int i;
12 for (i = 0; i < 128; i++)
13 x[i] = y[i] > 3 ? 2 : 0;