diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-06-22 13:32:49 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-06-22 13:32:49 +0000 |
commit | ea5916619053527a72d9cc5b11db666f8892e73d (patch) | |
tree | 3792ff9c2ad2c3f0ea10f85c7e93c922ddd97663 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | d7bdaf5795b3c3d5d08381cb078c80d39ed8da74 (diff) | |
download | bcm5719-llvm-ea5916619053527a72d9cc5b11db666f8892e73d.tar.gz bcm5719-llvm-ea5916619053527a72d9cc5b11db666f8892e73d.zip |
Remove another duplicated variable. We only need one to tell us if the linker
knows dwarf or not.
llvm-svn: 158993
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 2d6dc804635..d8647616ac1 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -613,7 +613,7 @@ bool AsmPrinter::needsSEHMoves() { } bool AsmPrinter::needsRelocationsForDwarfStringPool() const { - return MAI->doesDwarfUseRelocationsForStringPool(); + return MAI->doesDwarfUseRelocationsAcrossSections(); } void AsmPrinter::emitPrologLabel(const MachineInstr &MI) { |