diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 69bf5c69a70..a682a3f5a88 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -1318,8 +1318,7 @@ void AsmPrinter::printImplicitDef(const MachineInstr *MI) const { /// printLabel - This method prints a local label used by debug and /// exception handling tables. void AsmPrinter::printLabel(const MachineInstr *MI) const { - O << TAI->getPrivateGlobalPrefix() - << "label" << MI->getOperand(0).getImm() << ":\n"; + printLabel(MI->getOperand(0).getImm()); } void AsmPrinter::printLabel(unsigned Id) const {