(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr48694-1.c
       1  /* { dg-do compile } */
       2  
       3  extern volatile int g_89[5][9];
       4  extern int g, *gp;
       5  void func_64()
       6  {
       7    int i;
       8    for (i = 0; i < 1; )
       9      {
      10        for (g = 0; g < 1; )
      11  	return;
      12        gp = (int *)&g_89[g][0];
      13      }
      14  }