(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
asan/
pr88333.c
       1  /* PR sanitizer/88333 */
       2  /* { dg-do compile { target fstack_protector } } */
       3  /* { dg-options "-fstack-protector-strong -fsanitize=address" } */
       4  
       5  void bar (int *);
       6  
       7  void
       8  foo (void)
       9  {
      10    int c;
      11    bar (&c);
      12  }