OSDN Git Service

dfa64983ef2f73db65e2a62f4a5ca67c65a46bd3
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / 20000609-1.c
1 /* { dg-do run { target i?86-*-* } } */
2 /* { dg-options "-O1 -ffast-math -march=i686" } */
3 /* { dg-skip-if "" { i?86-*-* } { "-m64" } { "" } } */
4
5 /* Sanity check for fp_jcc_* with TARGET_CMOVE.  */
6
7 extern void abort (void);
8
9 static int test(double a)
10 {
11   if (a)
12     return 0;
13 }
14
15 static double zero = 0.0;
16
17 int main ()
18 {
19   test (zero);
20   return 0;
21 }