diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-10-27 16:04:30 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-10-27 16:04:30 +0000 |
commit | cc1b168ef6745994b32b1fabb49a0f7962ae1646 (patch) | |
tree | 11e610f6bf161211843e910fcba5abc1fec76079 /llvm/lib/MC/ELFObjectWriter.cpp | |
parent | d2893dd0b99f6c814d2ef95609ddcb80b7eddfed (diff) | |
download | bcm5719-llvm-cc1b168ef6745994b32b1fabb49a0f7962ae1646.tar.gz bcm5719-llvm-cc1b168ef6745994b32b1fabb49a0f7962ae1646.zip |
Symbols defined as the difference of other two end up in the ABS section.
llvm-svn: 117451
Diffstat (limited to 'llvm/lib/MC/ELFObjectWriter.cpp')
-rw-r--r-- | llvm/lib/MC/ELFObjectWriter.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/lib/MC/ELFObjectWriter.cpp b/llvm/lib/MC/ELFObjectWriter.cpp index 5e11a1553f8..54d8123da02 100644 --- a/llvm/lib/MC/ELFObjectWriter.cpp +++ b/llvm/lib/MC/ELFObjectWriter.cpp @@ -863,7 +863,7 @@ void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) { if (it->isCommon()) { assert(!Local); MSD.SectionIndex = ELF::SHN_COMMON; - } else if (Symbol.isAbsolute()) { + } else if (Symbol.isAbsolute() || RefSymbol.isVariable()) { MSD.SectionIndex = ELF::SHN_ABS; } else if (RefSymbol.isUndefined()) { MSD.SectionIndex = ELF::SHN_UNDEF; @@ -871,11 +871,8 @@ void ELFObjectWriterImpl::ComputeSymbolTable(MCAssembler &Asm) { // are able to set it. if (GetBinding(*it) == ELF::STB_LOCAL) SetBinding(*it, ELF::STB_GLOBAL); - } else if (Symbol.isVariable()) { - MSD.SectionIndex = SectionIndexMap.lookup(&RefSymbol.getSection()); - assert(MSD.SectionIndex && "Invalid section index!"); } else { - MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection()); + MSD.SectionIndex = SectionIndexMap.lookup(&RefSymbol.getSection()); assert(MSD.SectionIndex && "Invalid section index!"); } |