This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / visibility-8.c
blobfc3a1055757d65b498c21c294b2eb5c426c2f15e
1 /* Test hidden visibility on built-in functions (for libc). PR 13856. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=gnu99" } */
4 /* { dg-require-visibility "" } */
5 /* { dg-final { scan-assembler "\\.hidden.*__GI_fputs_unlocked" } } */
7 int fputs_unlocked (const char *restrict, int *restrict)
8 __asm__ ("__GI_fputs_unlocked")
9 __attribute__ ((visibility ("hidden")));
11 int
12 fputs_unlocked (str, fp)
13 const char *str;
14 int *fp;