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

     1  /* { dg-options "-funroll-loops -ftracer" } */
     2  int a, b;
     3  
     4  int f(void)
     5  {
     6      (a % b) && f();
     7      a = (0 || a | (a ? : 1));
     8  }