Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / gcc.dg / 20000609-1.c
blob5d452ac9d82e204dea0551c68066af376d2efad9
1 /* { dg-do run { target i?86-*-* x86_64-*-* } } */
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;