PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vpmovsdw-1.c
blob827f64bc9286323bff440679ef267f9b972600e8
1 /* { dg-do compile } */
2 /* { dg-options "-mavx512f -O2" } */
3 /* { dg-final { scan-assembler-times "vpmovsdw\[ \\t\]+\[^\{\n\]*(?:\n|\[ \\t\]+#)" 1 } } */
4 /* { dg-final { scan-assembler-times "vpmovsdw\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+(?:\n|\[ \\t\]+#)" 1 } } */
5 /* { dg-final { scan-assembler-times "vpmovsdw\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\{%k\[1-7\]\}(?:\n|\[ \\t\]+#)" 1 } } */
6 /* { dg-final { scan-assembler-times "vpmovsdw\[ \\t\]+\[^\{\n\]*%ymm\[0-9\]+\{%k\[1-7\]\}\{z\}(?:\n|\[ \\t\]+#)" 1 } } */
8 #include <immintrin.h>
10 volatile __m512i s;
11 volatile __m256i res;
12 volatile __mmask16 m;
14 void extern
15 avx512f_test (void)
17 res = _mm512_cvtsepi32_epi16 (s);
18 res = _mm512_mask_cvtsepi32_epi16 (res, m, s);
19 res = _mm512_maskz_cvtsepi32_epi16 (m, s);
20 _mm512_mask_cvtsepi32_storeu_epi16 ((void *) &res, m, s);