OSDN Git Service

fdce233173b4e9a436b3efad5a958747478b110e
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / ssefp-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -msse2 -march=k8 -mfpmath=sse" } */
3 /* { dg-require-effective-target sse2 } */
4 /* { dg-final { scan-assembler "maxsd" } } */
5 /* { dg-final { scan-assembler "minsd" } } */
6 double x;
7 t()
8 {
9   x=x>5?x:5;
10 }
11
12 double x;
13 q()
14 {
15   x=x<5?x:5;
16 }