diff options
author | David Chisnall <csdavec@swan.ac.uk> | 2011-03-14 15:01:16 +0000 |
---|---|---|
committer | David Chisnall <csdavec@swan.ac.uk> | 2011-03-14 15:01:16 +0000 |
commit | f836b5bc3f303786a0f0b15430f288edc631fb14 (patch) | |
tree | d5b933c70d55efff9441a2f4616baa52bc487cbb /clang/lib/CodeGen | |
parent | a29f7b2591d4fdb3509444c984ccbb88fdcbebd4 (diff) | |
download | bcm5719-llvm-f836b5bc3f303786a0f0b15430f288edc631fb14.tar.gz bcm5719-llvm-f836b5bc3f303786a0f0b15430f288edc631fb14.zip |
Fix incorrect linkage specifiers for selectors.
llvm-svn: 127580
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGObjCGNU.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGObjCGNU.cpp b/clang/lib/CodeGen/CGObjCGNU.cpp index 5f19dc6e564..5bd45a01c4b 100644 --- a/clang/lib/CodeGen/CGObjCGNU.cpp +++ b/clang/lib/CodeGen/CGObjCGNU.cpp @@ -1720,7 +1720,7 @@ llvm::Function *CGObjCGNU::ModuleInitFunction() { llvm::Constant *Idxs[] = {Zeros[0], llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), index++), Zeros[0]}; llvm::Constant *SelPtr = new llvm::GlobalVariable(TheModule, SelStructPtrTy, - true, llvm::GlobalValue::LinkOnceODRLinkage, + true, llvm::GlobalValue::InternalLinkage, llvm::ConstantExpr::getGetElementPtr(SelectorList, Idxs, 2), MangleSelectorTypes(".objc_sel_ptr"+iter->first.first+"."+ iter->first.second)); @@ -1739,7 +1739,7 @@ llvm::Function *CGObjCGNU::ModuleInitFunction() { llvm::Constant *Idxs[] = {Zeros[0], llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), index++), Zeros[0]}; llvm::Constant *SelPtr = new llvm::GlobalVariable(TheModule, SelStructPtrTy, - true, llvm::GlobalValue::LinkOnceODRLinkage, + true, llvm::GlobalValue::InternalLinkage, llvm::ConstantExpr::getGetElementPtr(SelectorList, Idxs, 2), MangleSelectorTypes(std::string(".objc_sel_ptr")+iter->getKey().str())); // If selectors are defined as an opaque type, cast the pointer to this |