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
[PATCH 53/57][Arm][OBJDUMP] Add support for MVE instructions: vand, vbrsr, vcls,...
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-ifunc
/
pr23169c.c
blob
b5301082136de35ccf9ca35d37795278d2fd3392
1
static int
2
ifunc
(
void
)
3
{
4
return
0xbadbeef
;
5
}
6
7
void
func
(
void
)
__attribute__
((
ifunc
(
"resolve_func"
)));
8
9
static void
*
10
resolve_func
(
void
)
11
{
12
return
ifunc
;
13
}