OSDN Git Service

* gcc.gd/struct/wo_prof_global_var.c: Use uninitialized integer
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / visibility-18.c
1 /* Test that external variable whose address is taken are marked. */
2 /* { dg-do compile } */
3 /* { dg-skip-if "" { *-*-darwin* } { "*" } { "" } } */
4 /* { dg-require-visibility "" } */
5 /* { dg-final { scan-hidden "foo" } } */
6
7 extern int foo __attribute__ ((visibility ("hidden")));
8 int *test = &foo;