Let tree_single_nonzero_warnv_p use range information
[official-gcc.git] / gcc / testsuite / gcc.dg / visibility-19.c
blob2b0b9beb401a74b3c7b0c2ba2ea88120337bbec5
1 /* Test that accessed external functions are marked. */
2 /* { dg-do compile } */
3 /* { dg-skip-if "" { *-*-darwin* } { "*" } { "" } } */
4 /* { dg-require-visibility "" } */
5 /* { dg-final { scan-hidden "foo" { xfail *-*-aix* } } } */
7 extern void foo(void) __attribute__ ((visibility ("hidden")));
8 typedef void (*foo_t)(void);
9 foo_t test = foo;