Rename the invoke 'except' destination to the 'unwind' destination
authorChris Lattner <sabre@nondot.org>
Sun, 8 Feb 2004 21:52:04 +0000 (21:52 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 8 Feb 2004 21:52:04 +0000 (21:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11205 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index e7928e25eb6a462a8b2b88f83829a422232df2a1..4879191017932746703b6a86ffab1569a2565dc3 100644 (file)
@@ -894,7 +894,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) {
 
     Out << " )\n\t\t\tto";
     writeOperand(II->getNormalDest(), true);
-    Out << " except";
+    Out << " unwind;
     writeOperand(II->getUnwindDest(), true);
 
   } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) {