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  
       8  volatile __m256 x;
       9  volatile __m128 xx;
      10  volatile __mmask8 m;
      11  
      12  void extern
      13  avx512vl_test (void)
      14  {
      15    x = _mm256_mask_blend_ps (m, x, x);
      16    xx = _mm_mask_blend_ps (m, xx, xx);
      17  }