repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
visibility
/
visibility-6.C
blob
0fecf6b74e92738b89baeb42351b89e9a3ad30d2
1
/* Test visibility attribute on definition of global variable that has
2
already had a forward declaration. */
3
/* { dg-require-visibility "" }
4
/* { dg-final { scan-hidden "xyzzy" } } */
5
6
extern int xyzzy;
7
8
int
9
__attribute__((visibility ("hidden")))
10
xyzzy = 5;