aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2007-02-01 17:46:10 +0000
committerJim Laskey <jlaskey@mac.com>2007-02-01 17:46:10 +0000
commit29bf16a0bd7483abc99102cee40c266ceacc8b3b (patch)
tree97996b1eccdada272cd1ffd653c66d9415e260b3 /lib/CodeGen/AsmPrinter.cpp
parent5dfbaf1fe3fa6914095cc55cde20b1ed25187b56 (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.cpp2
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";
}