tree-optimization/116658 - latent issue in vect_is_slp_load_node
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930818-1.c
blob530cd5fe96cd548e0ecb2f319db68c6f3fece9e9
1 /* { dg-additional-options "-fpermissive" } */
3 static double one = 1.0;
5 f()
7 int colinear;
8 colinear = (one == 0.0);
9 if (colinear)
10 abort ();
11 return colinear;
13 main()
15 if (f()) abort();
16 exit (0);