modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr53058.c (about)

     1  /* PR tree-optimization/53058 */
     2  
     3  int a, b, c;
     4  
     5  void
     6  foo ()
     7  {
     8    c = b >> 16;
     9    if (c > 32767)
    10      c = 0;
    11    a = b;
    12  }