2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930818-1.c
blob710e3ce2fbe12c8d8f22e7d0d87a65ca9eebd698
1 static double one = 1.0;
3 f()
5 int colinear;
6 colinear = (one == 0.0);
7 if (colinear)
8 abort ();
9 return colinear;
11 main()
13 if (f()) abort();
14 exit (0);