blob: 0f257a8988cc4a1791b90be9fb980dd25a8810c7 [file] [log] [blame]
/* PR sanitizer/88333 */
/* { dg-do compile { target fstack_protector } } */
/* { dg-options "-fstack-protector-strong -fsanitize=address" } */
void bar (int *);
void
foo (void)
{
int c;
bar (&c);
}