diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-12-17 02:06:08 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-12-17 02:06:08 +0000 |
commit | 7b62afac0a6f967e7466e60ceb26bfdcff2e59f4 (patch) | |
tree | 611d81115ea7a908e4788a64f8003f2783c98cd1 /lib/MC/MachObjectWriter.cpp | |
parent | 8f714fedba35bc454ff372f084090f14a25c8933 (diff) |
MC/Target: Remove HasScatteredSymbols target hook variable, which has been
superceded and was effectively dead.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122024 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MachObjectWriter.cpp')
-rw-r--r-- | lib/MC/MachObjectWriter.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/MC/MachObjectWriter.cpp b/lib/MC/MachObjectWriter.cpp index b2258027b1..619954ca3b 100644 --- a/lib/MC/MachObjectWriter.cpp +++ b/lib/MC/MachObjectWriter.cpp @@ -1123,15 +1123,10 @@ public: UndefinedSymbolData); } - bool IsFixupFullyResolved(const MCAssembler &Asm, const MCValue Target, bool IsPCRel, const MCFragment *DF) const { - // If we aren't using scattered symbols, the fixup is fully resolved. - if (!Asm.getBackend().hasScatteredSymbols()) - return true; - // Otherwise, determine whether this value is actually resolved; scattering // may cause atoms to move. |