1/* { dg-do compile } */
2/* { dg-options "-mavx512vl -O2" } */
3/* { dg-final { scan-assembler-times "(?:vblendmps|vmovaps)\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
4/* { dg-final { scan-assembler-times "(?:vblendmps|vmovaps)\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
5
6#include <immintrin.h>
7
8volatile __m256 x;
9volatile __m128 xx;
10volatile __mmask8 m;
11
12void extern
13avx512vl_test (void)
14{
15  x = _mm256_mask_blend_ps (m, x, x);
16  xx = _mm_mask_blend_ps (m, xx, xx);
17}
18