diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-02-08 21:44:31 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-02-08 21:44:31 +0000 |
| commit | fae8ab3088e339af403014983165abeebc202740 (patch) | |
| tree | 1892cd47e93d7ea36a7f6b8051375654c9b6741f /llvm/lib/VMCore | |
| parent | 35630adf54118c97f9bcc5c025eeb69df3ff7a39 (diff) | |
| download | bcm5719-llvm-fae8ab3088e339af403014983165abeebc202740.tar.gz bcm5719-llvm-fae8ab3088e339af403014983165abeebc202740.zip | |
rename the "exceptional" destination of an invoke instruction to the 'unwind' dest
llvm-svn: 11202
Diffstat (limited to 'llvm/lib/VMCore')
| -rw-r--r-- | llvm/lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp index 2a87aef3933..e7928e25eb6 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/lib/VMCore/AsmWriter.cpp @@ -895,7 +895,7 @@ void AssemblyWriter::printInstruction(const Instruction &I) { Out << " )\n\t\t\tto"; writeOperand(II->getNormalDest(), true); Out << " except"; - writeOperand(II->getExceptionalDest(), true); + writeOperand(II->getUnwindDest(), true); } else if (const AllocationInst *AI = dyn_cast<AllocationInst>(&I)) { Out << " "; |

