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

     1  int uh;
     2  
     3  void
     4  ha(void)
     5  {
     6    while (uh) {
     7      for (uh = 0; uh < 1; ++uh) {
     8        uh = 0;
     9        if (uh != 0)
    10   ts:
    11          uh %= uh;
    12      }
    13      ++uh;
    14    }
    15    goto ts;
    16  }