Support for non-landing pad exception handling.
[oota-llvm.git] / lib / CodeGen / AsmPrinter.cpp
index 27700ba319cb9baa78d22ce1a08c52ab01aa8621..373c3b24ced4d9200b4f19ae6ba0424d4500e780 100644 (file)
@@ -1032,8 +1032,8 @@ void AsmPrinter::printInlineAsm(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 {
-  if (AsmVerbose) O << "\n";
-  O << TAI->getPrivateGlobalPrefix()
+  O << "\n"
+    << TAI->getPrivateGlobalPrefix()
     << "debug_loc"
     << MI->getOperand(0).getImmedValue()
     << ":\n";