First version committed to git
[zpugcc/jano.git] / toolchain / gcc / gcc / testsuite / gcc.dg / visibility-6.c
blob632f2ac205925c79532de1e87b6519106cb78f40
1 /* Test visibility attribute on definition of global variable that has
2 already had a forward declaration. */
3 /* { dg-do compile } */
4 /* { dg-require-visibility "" } */
5 /* { dg-final { scan-assembler "\\.hidden.*xyzzy" } } */
7 extern int xyzzy;
9 int
10 __attribute__((visibility ("hidden")))
11 xyzzy = 5;