(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr67191.c
       1  /* { dg-do compile } */
       2  
       3  int a;
       4  void f(void)
       5  {
       6    int b;
       7    for(a=1; a;);
       8    for(; b; b++)
       9      lbl:
      10  	b || a;
      11    if(a)
      12      goto lbl;
      13  }