Add new unwind instruction. Happily there was a slot leftover from when the

'not' instruction was removed long ago

llvm-svn: 8404
This commit is contained in:
Chris Lattner 2003-09-08 18:54:01 +00:00
parent 12d456ccfc
commit 693afb9ffc
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ HANDLE_TERM_INST ( 1, Ret , ReturnInst)
HANDLE_TERM_INST ( 2, Br , BranchInst)
HANDLE_TERM_INST ( 3, Switch, SwitchInst)
HANDLE_TERM_INST ( 4, Invoke, InvokeInst)
LAST_TERM_INST ( 4)
HANDLE_TERM_INST ( 5, Unwind, UnwindInst)
LAST_TERM_INST ( 5)
// Standard binary operators...
FIRST_BINARY_INST( 6)