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
Updated Malay translation for the bfd sub-directory
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-i386
/
pr21168a.c
blob
a6c0da18ed72e2c59f9673c718331e25bebf3c54
1
#include <stdio.h>
2
3
int
foo
=
1
;
4
5
extern
int
*
bar
(
void
);
6
extern
int
bar_ifunc
(
void
);
7
8
int
9
main
(
void
)
10
{
11
if
(
bar
() == &
foo
&&
bar_ifunc
() ==
0xbadbeef
)
12
printf
(
"PASS
\n
"
);
13
return
0
;
14
}