(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr97559-2.c
       1  /* { dg-do compile } */
       2  
       3  int a, b, c, d;
       4  
       5  void e() {
       6    int f = b;
       7    if (a) {
       8    L1:
       9      a = 0;
      10    L2:
      11      if (a) {
      12        c = b;
      13        goto L1;
      14      }
      15    }
      16    if (d)
      17      goto L2;
      18  }