blob: 691f74f4dfad79d1a1c4035dcca346e1fefd5f17 [file] [log] [blame]
/* { dg-options "-O -g -w" } */
void bar (int *);
void
foo ()
{
int *const pc = __builtin_return_address (0);
bar (pc);
}