modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/shft.c (about) 1 foo (a) 2 int a; 3 { 4 int b = 8; 5 6 if ((a << b) >= 0) 7 return 1; 8 return a; 9 } 10 11 main () 12 { 13 if (foo (0x00ffffff) == 1) 14 puts ("y"); 15 }