commit | 29bf16a0bd7483abc99102cee40c266ceacc8b3b | [log] [tgz] |
---|---|---|
author | Jim Laskey <jlaskey@mac.com> | Thu Feb 01 17:46:10 2007 +0000 |
committer | Jim Laskey <jlaskey@mac.com> | Thu Feb 01 17:46:10 2007 +0000 |
tree | 97996b1eccdada272cd1ffd653c66d9415e260b3 | |
parent | 5dfbaf1fe3fa6914095cc55cde20b1ed25187b56 [diff] [blame] |
Emit labels as label_n and not as debug_n git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33757 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 373c3b2..ae082a6 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp
@@ -1034,7 +1034,7 @@ void AsmPrinter::printLabel(const MachineInstr *MI) const { O << "\n" << TAI->getPrivateGlobalPrefix() - << "debug_loc" + << "label_" << MI->getOperand(0).getImmedValue() << ":\n"; }