2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.dg / 20000609-1.c
blob568ca5c15960e892ee936922f07375314e659900
1 /* { dg-do run { target i?86-*-* } } */
2 /* { dg-options "-O1 -ffast-math -march=i686" } */
4 /* Sanity check for fp_jcc_* with TARGET_CMOVE. */
6 extern void abort (void);
8 static int test(double a)
10 if (a)
11 return 0;
14 static double zero = 0.0;
16 int main ()
18 test (zero);
19 return 0;