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 | 144f0efd4c958e22ff98f57e4653e3ac70f32924 (patch) | |
tree | 847ead365e86ddc0dc3ec79c3833b89685f524f5 /llvm/lib | |
parent | 17235712fbdcb5f8f69263c6f70f3b0bb0c7339f (diff) | |
download | bcm5719-llvm-144f0efd4c958e22ff98f57e4653e3ac70f32924.tar.gz bcm5719-llvm-144f0efd4c958e22ff98f57e4653e3ac70f32924.zip |
Rename the invoke 'except' destination to the 'unwind' destination
llvm-svn: 11205
Diffstat (limited to 'llvm/lib')
-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 e7928e25eb6..48791910179 100644 --- a/llvm/lib/VMCore/AsmWriter.cpp +++ b/llvm/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)) { |