1 /* { dg-do compile } */ 2 /* { dg-options "-mavx512f -O2" } */ 3 /* { dg-final { scan-assembler-times "vgatherqps\[ \\t\]+\[^\{\n\]*zmm\[0-9\]\[^\n\]*ymm\[0-9\]{%k\[1-7\]}(?:\n|\[ \\t\]+#)" 2 } } */ 4 5 #include <immintrin.h> 6 7 volatile __m256 x; 8 volatile __m512i idx; 9 volatile __mmask8 m8; 10 float *base; 11 12 void extern avx512f_test(void)13avx512f_test (void) 14 { 15 x = _mm512_i64gather_ps (idx, base, 8); 16 x = _mm512_mask_i64gather_ps (x, m8, idx, base, 8); 17 } 18