modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/930429-2.c (about) 1 int 2 f (b) 3 { 4 return (b >> 1) > 0; 5 } 6 7 main () 8 { 9 if (!f (9)) 10 abort (); 11 if (f (-9)) 12 abort (); 13 exit (0); 14 }