Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980604-1.c
blob8992a90c643b6cc2cfd976f076aed1d36d3d34b5
1 int a = 1;
2 int b = -1;
4 int c = 1;
5 int d = 0;
7 main ()
9 double e;
10 double f;
11 double g;
13 f = c;
14 g = d;
15 e = (a < b) ? f : g;
16 if (e)
17 abort ();
18 exit(0);