PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / visibility-23.c
blob2abb605acf5281be79521493d3f74ceb0dda7a98
1 /* PR target/32219 */
2 /* { dg-do compile } */
3 /* { dg-require-visibility "" } */
4 /* { dg-final { scan-hidden "foo" } } */
5 /* { dg-options "-O2 -fPIC" { target fpic } } */
6 /* { dg-skip-if "" { "hppa*-*-hpux*" "*-*-aix*" "*-*-darwin*" } } */
8 extern void foo () __attribute__((weak,visibility("hidden")));
9 int
10 main()
12 if (foo)
13 foo ();
14 return 0;