1 /* PR target/85582 */
2 
3 int a, b, d = 2, e;
4 long long c = 1;
5 
6 int
main()7 main ()
8 {
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;
21 }
22