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
This commit is contained in:
Chris Lattner 2004-02-08 21:52:04 +00:00
parent a58e3a16c5
commit f37a4268d8

View 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)) {