[middle-end PATCH] Prefer PLUS over IOR in RTL expansion of multi-word shifts/rotates.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980604-1.c
blobac389539d62e7d0654eb8d99ceb50d0db0c49e18
1 void abort (void);
2 void exit (int);
4 int a = 1;
5 int b = -1;
7 int c = 1;
8 int d = 0;
10 int
11 main (void)
13 double e;
14 double f;
15 double g;
17 f = c;
18 g = d;
19 e = (a < b) ? f : g;
20 if (e)
21 abort ();
22 exit(0);