PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vblendmps-1.c
blob0ecb2d844e55adfd235be13a7612961a7daffd5f
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512f -O2" } */
3 /* { dg-final { scan-assembler-times "(?:vblendmps|vmovaps)\[ \\t\]+\[^\{\n\]*%zmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
5 #include <immintrin.h>
7 volatile __m512 x;
8 volatile __mmask8 m;
10 void extern
11 avx512f_test (void)
13 x = _mm512_mask_blend_ps (m, x, x);