From: Rafael Espindola Date: Fri, 13 Jul 2012 18:04:45 +0000 (+0000) Subject: Apply visibility pragmas to class template declarations. This is needed because X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b60370ddb5b63e93f25dfbed920be0f335ddad3;p=clang Apply visibility pragmas to class template declarations. This is needed because we might use the declaration to build a type before seeing the definition. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160176 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 5d14d8762c..f76c75ad7f 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp @@ -1102,6 +1102,8 @@ Sema::CheckClassTemplate(Scope *S, unsigned TagSpec, TagUseKind TUK, if (Attr) ProcessDeclAttributeList(S, NewClass, Attr); + AddPushedVisibilityAttribute(NewClass); + if (TUK != TUK_Friend) PushOnScopeChains(NewTemplate, S); else { diff --git a/test/CodeGenCXX/visibility.cpp b/test/CodeGenCXX/visibility.cpp index 92b7f4453f..3ea232dc00 100644 --- a/test/CodeGenCXX/visibility.cpp +++ b/test/CodeGenCXX/visibility.cpp @@ -1044,3 +1044,20 @@ namespace test56 { // CHECK: declare hidden void @_ZN6test563fooIiE3barEv // CHECK-HIDDEN: declare hidden void @_ZN6test563fooIiE3barEv } + +namespace test57 { +#pragma GCC visibility push(hidden) + template + struct foo; + void bar(foo*); + template + struct foo { + static void zed(); + }; + void bah() { + foo::zed(); + } +#pragma GCC visibility pop + // CHECK: declare hidden void @_ZN6test573fooIiE3zedEv + // CHECK-HIDDEN: declare hidden void @_ZN6test573fooIiE3zedEv +}