Merged with mainline at revision 128810.
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 20000609-1.c
blobe094bba55f72da65eebe64ef6914a7b0a3808247
1 /* { dg-do run } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-O1 -ffast-math -march=i686" } */
6 /* Sanity check for fp_jcc_* with TARGET_CMOVE. */
8 extern void abort (void);
10 static int test(double a)
12 if (a)
13 return 0;
16 static double zero = 0.0;
18 int main ()
20 test (zero);
21 return 0;