commit | bcc67c3f75bce85abf6500c737b15919e177bbaa | [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 | 2d35edbd5ccfb81727bd6cc537fa66878c068b28 [diff] |
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();