summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MachObjectWriter.cpp
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2016-04-25 22:36:07 +0000
committerTim Northover <tnorthover@apple.com>2016-04-25 22:36:07 +0000
commitcbba0aba162fafaf25cbc0f6cccaf88012cb0728 (patch)
tree79b8d54244db82333d35894aeeb45ae0dc14d5fb /llvm/lib/MC/MachObjectWriter.cpp
parent736efc894da74d376713f800aebcf7dc9998dcde (diff)
downloadbcm5719-llvm-cbba0aba162fafaf25cbc0f6cccaf88012cb0728.tar.gz
bcm5719-llvm-cbba0aba162fafaf25cbc0f6cccaf88012cb0728.zip
ARM: put correct symbol index on indirect pointers in __thread_ptr.
Otherwise the linker has no idea what should be resolved. llvm-svn: 267488
Diffstat (limited to 'llvm/lib/MC/MachObjectWriter.cpp')
-rw-r--r--llvm/lib/MC/MachObjectWriter.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/MC/MachObjectWriter.cpp b/llvm/lib/MC/MachObjectWriter.cpp
index f33b866e6a5..e39271949d9 100644
--- a/llvm/lib/MC/MachObjectWriter.cpp
+++ b/llvm/lib/MC/MachObjectWriter.cpp
@@ -471,7 +471,8 @@ void MachObjectWriter::bindIndirectSymbols(MCAssembler &Asm) {
ie = Asm.indirect_symbol_end(); it != ie; ++it, ++IndirectIndex) {
const MCSectionMachO &Section = cast<MCSectionMachO>(*it->Section);
- if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS)
+ if (Section.getType() != MachO::S_NON_LAZY_SYMBOL_POINTERS &&
+ Section.getType() != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS)
continue;
// Initialize the section indirect symbol base, if necessary.
OpenPOWER on IntegriCloud