2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-i32gatherq512-1.c
blobee4491eb1dbbd69279705c23e561f96820168741
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512f -O2" } */
3 /* { dg-final { scan-assembler-times "vpgatherdq\[ \\t\]+\[^\n\]*ymm\[0-9\]\[^\n\]*zmm\[0-9\]{%k\[1-7\]}" 2 } } */
5 #include <immintrin.h>
7 volatile __m512i x;
8 volatile __m256i idx;
9 volatile __mmask8 m8;
10 long long *base;
12 void extern
13 avx512f_test (void)
15 x = _mm512_i32gather_epi64 (idx, base, 8);
16 x = _mm512_mask_i32gather_epi64 (x, m8, idx, base, 8);