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