Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / 20000609-1.c
blobdfa64983ef2f73db65e2a62f4a5ca67c65a46bd3
1 /* { dg-do run { target i?86-*-* } } */
2 /* { dg-options "-O1 -ffast-math -march=i686" } */
3 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
5 /* Sanity check for fp_jcc_* with TARGET_CMOVE. */
7 extern void abort (void);
9 static int test(double a)
11 if (a)
12 return 0;
15 static double zero = 0.0;
17 int main ()
19 test (zero);
20 return 0;