(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr57417.c
       1  /* { dg-do compile } */
       2  
       3  int a, b;
       4  volatile int *c;
       5  
       6  void foo ()
       7  {
       8    volatile int d[1];
       9    b = 0;
      10    for (;; a--)
      11      c = &d[b];
      12  }