repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr48826.c
blob
691f74f4dfad79d1a1c4035dcca346e1fefd5f17
1
/* { dg-options "-O -g -w" } */
2
3
void
bar
(
int
*);
4
5
void
6
foo
()
7
{
8
int
*
const
pc
=
__builtin_return_address
(
0
);
9
bar
(
pc
);
10
}