repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-ifunc
/
pr19784b.c
blob
8ea7ce2c86956c17879138b67d43918fff3d51fe
1
int
foo
(
int
x
)
__attribute__
((
ifunc
(
"resolve_foo"
)));
2
3
static int
foo_impl
(
int
x
)
4
{
5
return
x
;
6
}
7
8
void
*
resolve_foo
(
void
)
9
{
10
return
(
void
*)
foo_impl
;
11
}