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 } } */
4
5#include <immintrin.h>
6
7volatile __m512 x;
8volatile __mmask8 m;
9
10void extern
11avx512f_test (void)
12{
13  x = _mm512_mask_blend_ps (m, x, x);
14}
15