blob: c174b922ea9329e8ccde89c08086b87373331203 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mavx512vl -mavx512cd -O2" } */
/* { dg-final { scan-assembler-times "vpbroadcastmw2d\[ \\t\]+\[^\{\n\]*%k\[0-7\]\[^\n\]*%xmm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
/* { dg-final { scan-assembler-times "vpbroadcastmw2d\[ \\t\]+\[^\{\n\]*%k\[0-7\]\[^\n\]*%ymm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
#include <immintrin.h>
volatile __m128i x128;
volatile __m256i x256;
volatile __mmask16 m16;
void extern
avx512vl_test (void)
{
x128 = _mm_broadcastmw_epi32 (m16);
x256 = _mm256_broadcastmw_epi32 (m16);
}