gcc/gcc/testsuite/gcc.dg/pr48826.c

11 lines
128 B
C

/* { dg-options "-O -g -w" } */
void bar (int *);
void
foo ()
{
int *const pc = __builtin_return_address (0);
bar (pc);
}