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