(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr96260.c
       1  /* PR target/96260 */
       2  /* { dg-do compile } */
       3  /* { dg-options "--param asan-stack=1 -fsanitize=kernel-address -fasan-shadow-offset=0x100000" } */
       4  /* { dg-skip-if "no address sanitizer" { no_fsanitize_address } } */
       5  
       6  int *bar(int *);
       7  int *f( int a)
       8  {
       9    return bar(&a);
      10  }