2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / avx512f-vminps-1.c
blob3cd5904bcc56a541f2454243a306f70cc82166ac
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -mavx512f" } */
3 /* { dg-final { scan-assembler-times "vminps\[ \\t\]+\[^\n\]*%zmm\[0-9\]\[^\{\]" 6 } } */
4 /* { dg-final { scan-assembler-times "vminps\[ \\t\]+\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 2 } } */
5 /* { dg-final { scan-assembler-times "vminps\[ \\t\]+\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\{z\}" 2 } } */
6 /* { dg-final { scan-assembler-times "vminps\[ \\t\]+\[^\n\]*\{sae\}\[^\n\]*%zmm\[0-9\]\[^\{\]" 3 } } */
7 /* { dg-final { scan-assembler-times "vminps\[ \\t\]+\[^\n\]*\{sae\}\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\[^\{\]" 1 } } */
8 /* { dg-final { scan-assembler-times "vminps\[ \\t\]+\[^\n\]*\{sae\}\[^\n\]*%zmm\[0-9\]\{%k\[1-7\]\}\{z\}" 1 } } */
10 #include <immintrin.h>
12 volatile __m512 x;
13 volatile __mmask16 m;
15 void extern
16 avx512f_test (void)
18 x = _mm512_min_ps (x, x);
19 x = _mm512_mask_min_ps (x, m, x, x);
20 x = _mm512_maskz_min_ps (m, x, x);
21 x = _mm512_min_round_ps (x, x, _MM_FROUND_NO_EXC);
22 x = _mm512_mask_min_round_ps (x, m, x, x, _MM_FROUND_NO_EXC);
23 x = _mm512_maskz_min_round_ps (m, x, x, _MM_FROUND_NO_EXC);