* config/i386/avx512fintrin.h (_mm512_set_epi16, _mm512_set_epi8,
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / fcsel_1.c
blob2704ee0ede77cbedb19a56ee5161fb314459be13
1 /* { dg-do compile } */
2 /* { dg-options " -O2 " } */
4 float
5 f_1 (float a, float b, float c, float d)
7 if (a > 0.0)
8 return c;
9 else
10 return 2.0;
13 double
14 f_2 (double a, double b, double c, double d)
16 if (a > b)
17 return c;
18 else
19 return d;
22 /* { dg-final { scan-assembler-times "\tfcsel" 2 } } */