PR middle-end/85090
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512bw-pr85090-2.c
blobb93ae4b071f14e007f5183467b8b1e3f7c736e39
1 /* PR middle-end/85090 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -mavx512bw -mtune=intel -masm=att" } */
5 typedef short V __attribute__((vector_size (64)));
8 f1 (V x, int y)
10 x[0] = y;
11 return x;
15 f2 (V x, int y)
17 x[7] = y;
18 return x;
22 f3 (V x, int y)
24 x[11] = y;
25 return x;
29 f4 (V x, int y)
31 x[29] = y;
32 return x;
35 /* { dg-final { scan-assembler-times "vpbroadcastw\t" 4 } } */