Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gcc.dg / pr97725.c
blob2fcb12cc3016ee21f04bb7e312eb3356deae83af
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 int a;
5 unsigned b;
7 int main() {
8 if (a) {
9 goto L1;
10 while (1)
11 while (1) {
12 long e = -1L, g;
13 int f, h, i;
14 L1:
15 a = f;
16 L2:
17 g = e;
18 f = h || g;
19 e = ~(f & b);
20 if (i || g < -1L) {
21 ~(g || 0);
22 break;
24 goto L2;
27 return 0;