Support for non-landing pad exception handling.

llvm-svn: 33755
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp
index 27700ba..373c3b2 100644
--- a/llvm/lib/CodeGen/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter.cpp
@@ -1032,8 +1032,8 @@
 /// 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";