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
/
pr19784c.c
blob
117dfec12028448cd6189569d6d9b6eaf57cbb3b
1
#include <stdio.h>
2
3
extern
void
abort
(
void
);
4
extern
int
foo
(
int
)
__attribute__
((
visibility
(
"hidden"
)));
5
6
int
bar
()
7
{
8
if
(
foo
(
5
) !=
5
)
9
abort
();
10
printf
(
"PASS
\n
"
);
11
}