blob: 9f13d74e0237b6ec750fe88f47ca03af443a6055 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mavx512vl -O2" } */
/* { dg-final { scan-assembler-times "vpermi2d\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
/* { dg-final { scan-assembler-times "vpermi2d\[ \\t\]+\[^\{\n\]*%xmm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
#include <immintrin.h>
volatile __m256i x1;
volatile __m128i x2;
volatile __m256i y;
volatile __m128i z;
volatile __mmask8 m;
void extern
avx512vl_test (void)
{
x1 = _mm256_mask2_permutex2var_epi32 (x1, y, m, x1);
x2 = _mm_mask2_permutex2var_epi32 (x2, z, m, x2);
}