diff options
author | Mike Stump <mrs@apple.com> | 2009-03-07 16:33:28 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-07 16:33:28 +0000 |
commit | 286acbdbe0c82e9a6bcad5fca3c4fa582f3f1a2c (patch) | |
tree | 72e2b3e141e7cbdc59312b6f02711751b6c5361e /lib/CodeGen/CodeGenModule.cpp | |
parent | a91b5905755a9066576db16f1d3ac0ffb9e43e09 (diff) |
Fixup our uses of various linkages to match how llvm now works. I think they are all
correct, but an extra set of ObjC eyes would be good.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66342 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index 85d5208d49..95d881bc49 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -270,7 +270,7 @@ void CodeGenModule::SetGlobalValueAttributes(const Decl *D, D->getAttr<WeakImportAttr>()) { // "extern_weak" is overloaded in LLVM; we probably should have // separate linkage types for this. - GV->setLinkage(llvm::Function::ExternalWeakLinkage); + GV->setLinkage(llvm::Function::ExternalWeakAnyLinkage); } } else { if (IsInternal) { @@ -285,7 +285,7 @@ void CodeGenModule::SetGlobalValueAttributes(const Decl *D, GV->setLinkage(llvm::Function::DLLExportLinkage); } else if (D->getAttr<WeakAttr>() || D->getAttr<WeakImportAttr>() || IsInline) - GV->setLinkage(llvm::Function::WeakLinkage); + GV->setLinkage(llvm::Function::WeakAnyLinkage); } } @@ -611,7 +611,7 @@ void CodeGenModule::EmitGlobalDefinition(const ValueDecl *D) { setGlobalVisibility(GV, VisibilityAttr::HiddenVisibility); if (D->getAttr<WeakAttr>() || D->getAttr<WeakImportAttr>()) - GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage); + GV->setLinkage(llvm::GlobalValue::ExternalWeakAnyLinkage); if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>()) { // Prefaced with special LLVM marker to indicate that the name @@ -746,7 +746,7 @@ void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { else if (D->getAttr<DLLExportAttr>()) GV->setLinkage(llvm::Function::DLLExportLinkage); else if (D->getAttr<WeakAttr>() || D->getAttr<WeakImportAttr>()) - GV->setLinkage(llvm::GlobalVariable::WeakLinkage); + GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage); else { // FIXME: This isn't right. This should handle common linkage and other // stuff. @@ -757,7 +757,7 @@ void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { assert(0 && "Can't have auto or register globals"); case VarDecl::None: if (!D->getInit()) - GV->setLinkage(llvm::GlobalVariable::CommonLinkage); + GV->setLinkage(llvm::GlobalVariable::CommonAnyLinkage); else GV->setLinkage(llvm::GlobalVariable::ExternalLinkage); break; |