blob: fbf8a49a3768ea915b3b4b9fc70259e3852cc1fa [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mavx512f -O2" } */
/* { dg-final { scan-assembler-times "vpandd\[ \\t\]+\[^\n\]*%zmm\[0-9\]\[^\{\]" 4 } } */
/* { dg-final { scan-assembler-times "vpandd\[ \\t\]+\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 1 } } */
/* { dg-final { scan-assembler-times "vpandd\[ \\t\]+\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\{z\}" 1 } } */
#include <immintrin.h>
volatile __m512i x;
volatile __mmask16 m;
void extern
avx512f_test (void)
{
x = _mm512_and_si512 (x, x);
x = _mm512_and_epi32 (x, x);
x = _mm512_mask_and_epi32 (x, m, x, x);
x = _mm512_maskz_and_epi32 (m, x, x);
}