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
AArch64: Add SVE DWARF registers
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-i386
/
pr22001-1b.c
blob
8eadd42109f6abc1fb20541dd53fede83ece077a
1
#include <stdio.h>
2
3
extern
int
copy
;
4
extern
int
get_copy
(
void
);
5
extern
int
*
get_copy_p
(
void
);
6
7
int
8
main
()
9
{
10
if
(
copy
==
get_copy
() && &
copy
==
get_copy_p
())
11
printf
(
"PASS
\n
"
);
12
13
return
0
;
14
}