summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2007-02-01 16:31:34 +0000
committerJim Laskey <jlaskey@mac.com>2007-02-01 16:31:34 +0000
commitb82313fdc21e8190768addf0f16710b94f0e1441 (patch)
tree026fec6526020c20ddecd9c5f43a216c2c2860ba /lib/CodeGen/AsmPrinter.cpp
parent283663a4ed18124980c1a5e3114550638115edd8 (diff)
downloadllvm-b82313fdc21e8190768addf0f16710b94f0e1441.tar.gz
llvm-b82313fdc21e8190768addf0f16710b94f0e1441.tar.bz2
llvm-b82313fdc21e8190768addf0f16710b94f0e1441.tar.xz
Support for non-landing pad exception handling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp
index 27700ba319..373c3b24ce 100644
--- a/lib/CodeGen/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter.cpp
@@ -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";