diff options
author | Eric Christopher <echristo@gmail.com> | 2013-12-28 01:39:17 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-12-28 01:39:17 +0000 |
commit | 8458862f20c6f4baf40d90edda6886a87a9bd3bb (patch) | |
tree | e0d92f2211b6be9245e4209c018cf88cc04a1f5f /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 53c99b78a8052d0ce2e6c0a9178ff3220d0c14ef (diff) | |
download | bcm5719-llvm-8458862f20c6f4baf40d90edda6886a87a9bd3bb.tar.gz bcm5719-llvm-8458862f20c6f4baf40d90edda6886a87a9bd3bb.zip |
Remove AsmPrinter::needsRelocationsForDwarfStringPool() since it's
just calling into MAI and is only abstracting for a single interface that
we actually need to check in multiple places.
llvm-svn: 198092
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index f704f7a52ba..5fb79c7d204 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -661,10 +661,6 @@ bool AsmPrinter::needsSEHMoves() { MF->getFunction()->needsUnwindTableEntry(); } -bool AsmPrinter::needsRelocationsForDwarfStringPool() const { - return MAI->doesDwarfUseRelocationsAcrossSections(); -} - void AsmPrinter::emitPrologLabel(const MachineInstr &MI) { const MCSymbol *Label = MI.getOperand(0).getMCSymbol(); |