commit | 0887fa0b8c966234025535d4adcbd5f562a3c0a5 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Apr 04 21:29:44 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Apr 04 21:29:44 2010 +0000 |
tree | 6874aebd5e288cc56c587762545248134a6c66e5 | |
parent | e0103f03f05b770ebfc42152357a62acd8671945 [diff] [blame] |
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
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 @@ bool IsSmall, bool isEH) { bool isAbsolute; if (isEH) - isAbsolute = MAI->isAbsoluteEHSectionOffsets(); + isAbsolute = false; else isAbsolute = MAI->isAbsoluteDebugSectionOffsets();