aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/ELFObjectWriter.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-02-16 03:25:55 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-02-16 03:25:55 +0000
commit908159b46ae118d36fccbc1d5145dcedfc3d4185 (patch)
tree2bcfa35cdee3a066ce28656022bc1e7b506c6e5e /lib/MC/ELFObjectWriter.cpp
parent169e1552e748348b033fb6817df4bffc345e5583 (diff)
downloadexternal_llvm-908159b46ae118d36fccbc1d5145dcedfc3d4185.zip
external_llvm-908159b46ae118d36fccbc1d5145dcedfc3d4185.tar.gz
external_llvm-908159b46ae118d36fccbc1d5145dcedfc3d4185.tar.bz2
Gas is very inconsistent about when a relaxation/relocation is needed. Do
the right thing and stop trying to copy it. Fixes PR8944. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125648 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/ELFObjectWriter.cpp')
-rw-r--r--lib/MC/ELFObjectWriter.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/MC/ELFObjectWriter.cpp b/lib/MC/ELFObjectWriter.cpp
index 0db54b5..8a00a16 100644
--- a/lib/MC/ELFObjectWriter.cpp
+++ b/lib/MC/ELFObjectWriter.cpp
@@ -359,13 +359,6 @@ namespace {
MCDataFragment *F,
const MCSectionData *SD);
- virtual bool
- IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
- const MCSymbolData &DataA,
- const MCFragment &FB,
- bool InSet,
- bool IsPCRel) const;
-
virtual void WriteObject(MCAssembler &Asm, const MCAsmLayout &Layout);
virtual void WriteSection(MCAssembler &Asm,
const SectionIndexMapTy &SectionIndexMap,
@@ -1181,24 +1174,6 @@ void ELFObjectWriter::CreateMetadataSections(MCAssembler &Asm,
}
}
-bool
-ELFObjectWriter::IsSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm,
- const MCSymbolData &DataA,
- const MCFragment &FB,
- bool InSet,
- bool IsPCRel) const {
- // FIXME: This is in here just to match gnu as output. If the two ends
- // are in the same section, there is nothing that the linker can do to
- // break it.
- if (DataA.isExternal())
- return false;
-
- const MCSection &SecA = DataA.getSymbol().AliasedSymbol().getSection();
- const MCSection &SecB = FB.getParent()->getSection();
- // On ELF A - B is absolute if A and B are in the same section.
- return &SecA == &SecB;
-}
-
void ELFObjectWriter::CreateIndexedSections(MCAssembler &Asm,
MCAsmLayout &Layout,
GroupMapTy &GroupMap,