OSDN Git Service

* gcc.dg/weak/typeof-2.c: Needs aliases as well as weak.
[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
4 /* Sanity check for fp_jcc_* with TARGET_CMOVE.  */
5
6 extern void abort (void);
7
8 static int test(double a)
9 {
10   if (a)
11     return 0;
12 }
13
14 static double zero = 0.0;
15
16 int main ()
17 {
18   test (zero);
19   return 0;
20 }