(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr102645.c
       1  /* PR tree-optimization/102645 */
       2  
       3  volatile int a[1], d;
       4  int b, c;
       5  
       6  int
       7  main ()
       8  {
       9    if (b && c)
      10      for (c = 0; c < 3; c++)
      11        {
      12  	for (int e = 0; e < 6; e++)
      13  	  for (int f = 0; f < 12; f++)
      14  	    d && a[0];
      15  	continue;
      16        }
      17    return 0;
      18  }