aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-04 21:29:44 +0000
committerChris Lattner <sabre@nondot.org>2010-04-04 21:29:44 +0000
commitbcc67c3f75bce85abf6500c737b15919e177bbaa (patch)
tree6874aebd5e288cc56c587762545248134a6c66e5 /lib/CodeGen
parent2d35edbd5ccfb81727bd6cc537fa66878c068b28 (diff)
downloadexternal_llvm-bcc67c3f75bce85abf6500c737b15919e177bbaa.zip
external_llvm-bcc67c3f75bce85abf6500c737b15919e177bbaa.tar.gz
external_llvm-bcc67c3f75bce85abf6500c737b15919e177bbaa.tar.bz2
isAbsoluteEHSectionOffsets always returns false, eliminate it
and substitute false at the one call site. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
index 87224fa..b966419 100644
--- a/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfPrinter.cpp
@@ -43,7 +43,7 @@ void DwarfPrinter::EmitSectionOffset(const MCSymbol *Label,
bool IsSmall, bool isEH) {
bool isAbsolute;
if (isEH)
- isAbsolute = MAI->isAbsoluteEHSectionOffsets();
+ isAbsolute = false;
else
isAbsolute = MAI->isAbsoluteDebugSectionOffsets();