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