diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-02-01 17:46:10 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-02-01 17:46:10 +0000 |
commit | 29bf16a0bd7483abc99102cee40c266ceacc8b3b (patch) | |
tree | 97996b1eccdada272cd1ffd653c66d9415e260b3 /lib/CodeGen/AsmPrinter.cpp | |
parent | 5dfbaf1fe3fa6914095cc55cde20b1ed25187b56 (diff) |
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
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 373c3b24ce..ae082a63a2 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -1034,7 +1034,7 @@ void AsmPrinter::printInlineAsm(const MachineInstr *MI) const { void AsmPrinter::printLabel(const MachineInstr *MI) const { O << "\n" << TAI->getPrivateGlobalPrefix() - << "debug_loc" + << "label_" << MI->getOperand(0).getImmedValue() << ":\n"; } |