PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-i32gatherps512-1.c
blob9f3e65520fc2ccfd8fa7d55d1a82b2c3c109c338
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512f -O2 -mtune=knl" } */
3 /* { dg-final { scan-assembler-times "vgatherdps\[ \\t\]+\[^\{\n\]*zmm\[0-9\]\[^\n\]*zmm\[0-9\]{%k\[1-7\]}(?:\n|\[ \\t\]+#)" 2 } } */
5 #include <immintrin.h>
7 volatile __m512 x;
8 volatile __m512i idx;
9 volatile __mmask16 m16;
10 float *base;
12 void extern
13 avx512f_test (void)
15 x = _mm512_i32gather_ps (idx, base, 8);
16 x = _mm512_mask_i32gather_ps (x, m16, idx, base, 8);