From: Rafael Espindola Date: Thu, 19 Apr 2012 04:37:16 +0000 (+0000) Subject: Check ConsiderGlobalVisibility before using -fvisibility. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fc149057248a565ec9e539be66eeec42216282c;p=clang Check ConsiderGlobalVisibility before using -fvisibility. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@155100 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/Decl.cpp b/lib/AST/Decl.cpp index 7db38a9130..f26747bdf6 100644 --- a/lib/AST/Decl.cpp +++ b/lib/AST/Decl.cpp @@ -291,7 +291,8 @@ static LinkageInfo getLVForNamespaceScopeDecl(const NamedDecl *D, LVFlags F) { } } - LV.mergeVisibility(Context.getLangOpts().getVisibilityMode()); + if (F.ConsiderGlobalVisibility) + LV.mergeVisibility(Context.getLangOpts().getVisibilityMode()); // C++ [basic.link]p4: @@ -532,7 +533,8 @@ static LinkageInfo getLVForClassMember(const NamedDecl *D, LVFlags F) { if (LV.linkage() == UniqueExternalLinkage) return LinkageInfo::uniqueExternal(); - LV.mergeVisibility(D->getASTContext().getLangOpts().getVisibilityMode()); + if (F.ConsiderGlobalVisibility) + LV.mergeVisibility(D->getASTContext().getLangOpts().getVisibilityMode()); if (const CXXMethodDecl *MD = dyn_cast(D)) { // If the type of the function uses a type with unique-external