Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr48826.c
blob: 691f74f4dfad79d1a1c4035dcca346e1fefd5f17 [
file
] [
log
] [
blame
]
/* { dg-options "-O -g -w" } */
void
bar
(
int
*);
void
foo
()
{
int
*
const
pc
=
__builtin_return_address
(
0
);
bar
(
pc
);
}