Add AMD SSE5 support; Add iterator over function arguments; Add stdarg_p, prototype_p...
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / sse5-pcmov2.c
blob0bb366ce0c96708026bee7f4520472a5151a5e91
1 /* Test that the compiler properly optimizes conditional floating point moves
2 into the pcmov instruction on SSE5 systems. */
4 /* { dg-do compile { target x86_64-*-*} } */
5 /* { dg-options "-O2 -msse5" } */
7 extern void exit (int);
9 float flt_test (float a, float b, float c, float d)
11 return (a > b) ? c : d;
14 float flt_a = 1, flt_b = 2, flt_c = 3, flt_d = 4, flt_e;
16 int main()
18 flt_e = flt_test (flt_a, flt_b, flt_c, flt_d);
19 exit (0);
22 /* { dg-final { scan-assembler "pcmov" } } */