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

     1  /* PR tree-optimization/37662 */
     2  
     3  extern int baz (void);
     4  
     5  static int
     6  foo (void)
     7  {
     8    return 1;
     9  }
    10  
    11  int
    12  bar (void)
    13  {
    14    return foo () >= 1 ^ (baz () || 0) || 0;
    15  }