(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr69999.c
       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  }