(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
torture/
pr97901.c
       1  /* { dg-do compile } */
       2  
       3  int a[1], b, *c, *d;
       4  
       5  int main() {
       6  L:
       7    d = c;
       8    for (b = 0; b < 2; b++)
       9      d = &a[0];
      10    if (c)
      11      goto L;
      12    if (*d)
      13      __builtin_abort ();
      14    return 0;
      15  }