* g++.dg/other/i386-2.C (dg-options): Add -mavx512pf.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-i64gatherd512-1.c
blob66dcf6f60c4d41b81a5fa7a5f5afc37a520fba59
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512f -O2" } */
3 /* { dg-final { scan-assembler-times "vpgatherqd\[ \\t\]+\[^\n\]*zmm\[0-9\]\[^\n\]*ymm\[0-9\]{%k\[1-7\]}" 2 } } */
5 #include <immintrin.h>
7 volatile __m256i x;
8 volatile __m512i idx;
9 volatile __mmask8 m8;
10 int *base;
12 void extern
13 avx512f_test (void)
15 x = _mm512_i64gather_epi32 (idx, base, 8);
16 x = _mm512_mask_i64gather_epi32 (x, m8, idx, base, 8);