diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-08 21:52:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-08 21:52:04 +0000 |
commit | f37a4268d86754a9ae3b32810268bc8762deb12d (patch) | |
tree | 380102a4a4a0684b8a1f1ddf89a835317585eefc /lib/VMCore/AsmWriter.cpp | |
parent | a58e3a16c5b2a70f19cac0298fc9f751b7047a85 (diff) | |
download | external_llvm-f37a4268d86754a9ae3b32810268bc8762deb12d.zip external_llvm-f37a4268d86754a9ae3b32810268bc8762deb12d.tar.gz external_llvm-f37a4268d86754a9ae3b32810268bc8762deb12d.tar.bz2 |
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
Diffstat (limited to 'lib/VMCore/AsmWriter.cpp')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index e7928e2..4879191 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<AllocationInst>(&I)) { |