PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr85582-1.c
blob2a5c5b1fe26a924db64a7a18385f5994e871154b
1 /* PR target/85582 */
3 int a, b, d = 2, e;
4 long long c = 1;
6 int
7 main ()
9 int g = 6;
10 L1:
11 e = d;
12 if (a)
13 goto L1;
14 g--;
15 int i = c >> ~(~e | ~g);
16 L2:
17 c = (b % c) * i;
18 if (!e)
19 goto L2;
20 return 0;