From: Chris Lattner Date: Sun, 8 Feb 2004 21:52:04 +0000 (+0000) Subject: Rename the invoke 'except' destination to the 'unwind' destination X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f37a4268d86754a9ae3b32810268bc8762deb12d;p=oota-llvm.git Rename the invoke 'except' destination to the 'unwind' destination git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11205 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index e7928e25eb6..48791910179 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -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(&I)) {