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
Delete asection.symbol_ptr_ptr
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-ifunc
/
ifunc-common-1b.c
blob
1235942575559d5d9a87a707ee72b9b16644cae2
1
void
alt
(
void
) { }
2
3
void
foo
(
void
);
4
void
*
foo_ifunc
(
void
)
__asm__
(
"foo"
);
5
__asm__
(
".type foo, %gnu_indirect_function"
);
6
__asm__
(
".weak foo"
);
7
8
void
*
9
foo_ifunc
(
void
)
10
{
11
return
alt
;
12
}