(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
volatile3.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-fdump-tree-ssa" } */
       3  
       4  volatile int *q;
       5  void foo(int i)
       6  {
       7    volatile int a[2];
       8    volatile int *p = &a[i];
       9    q = p;
      10  }
      11  
      12  /* { dg-final { scan-tree-dump-not "{v}" "ssa" } } */