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 40/57][Arm][OBJDUMP] Add support for MVE instructions: vdup, veor, vfma, vfms...
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-sparc
/
gotop-hidden.c
blob
d769c6ddc668f85818739332b8de68297b4fab65
1
#include <stdio.h>
2
3
extern
unsigned int
foo
(
void
);
4
5
__attribute__
((
visibility
(
"hidden"
)))
unsigned int
var
=
0xdeadbeef
;
6
7
int
main
(
void
)
8
{
9
if
(
var
==
foo
())
10
puts
(
"PASS"
);
11
12
return
0
;
13
}