(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
aarch64/
pr103085.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -fstack-protector-strong -fPIC" } */
       3  
       4  void g(int*);
       5  void
       6  f (int x)
       7  {
       8    int arr[10];
       9    g (arr);
      10  }
      11