* gcc.dg/const-elim-1.c: xfail for xtensa.
[official-gcc.git] / gcc / testsuite / gcc.dg / visibility-5.c
blobb1f46d2040a8e2130e54b02145d9c58449b1dae9
1 /* Test visibility attribute on definition of a function that has
2 already had a forward declaration. */
3 /* { dg-do compile } */
4 /* { dg-require-visibility "" } */
5 /* { dg-final { scan-assembler "\\.hidden.*foo" } } */
7 void foo();
9 void
10 __attribute__((visibility ("hidden")))
11 foo()
12 { }