2018-03-08 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / 20000609-1.c
bloba083a5d53adfb6a10c27498f8da52b69db6444a9
1 /* { dg-do run } */
2 /* { dg-require-effective-target ia32 } */
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;