diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-08 22:52:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-08 22:52:49 +0000 |
commit | dd8187a3e9509c670162b6ae8b7115723a37f01c (patch) | |
tree | 87efdefeaa0756d3be6d621f75541f0b8bb4c068 /lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 326861c4c823faedd5123f2acd5ad83f7a547e80 (diff) |
eliminate a form of PrintLabelName.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97999 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 602145bbdd..633d586e56 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -2969,7 +2969,7 @@ void DwarfDebug::emitDebugInlineInfo() { else O << MAI->getData64bitsDirective(); - PrintLabelName("label", LI->first); EOL("low_pc"); + PrintLabelName(getDWLabel("label", LI->first)); EOL("low_pc"); } } |