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

     1  /* PR middle-end/89655 */
     2  
     3  int a, b, d;
     4  char *c;
     5  
     6  void
     7  foo (void)
     8  {
     9    int f = a;
    10    for (;;)
    11      {
    12        for (f = 0; f < (a > 3 ? : a); f++)
    13  	b = c[f] ? c[(f + 2 > a - 1 ? a - 1 : 2) * d] : 0;
    14      }
    15  }