modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/pr85582-1.c (about) 1 /* PR target/85582 */ 2 3 int a, b, d = 2, e; 4 long long c = 1; 5 6 int 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 }