repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* cgen.c (gas_cgen_parse_operand): Do not set BSF_RELC flag on
[binutils.git]
/
gold
/
testsuite
/
ifuncvar2.c
blob
f09de0e12a1d13f4cc3e98044f2b5a76d13095c1
1
/* Test global variable initialized to hidden STT_GNU_IFUNC symbol. */
2
3
extern
void
foo
(
void
);
4
void
(*
f
) (
void
) = &
foo
;
5
6
extern
void
bar
(
void
);
7
8
void
9
bar
(
void
)
10
{
11
f
();
12
}