Add new unwind instruction. Happily there was a slot leftover from when the
authorChris Lattner <sabre@nondot.org>
Mon, 8 Sep 2003 18:54:01 +0000 (18:54 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 8 Sep 2003 18:54:01 +0000 (18:54 +0000)
'not' instruction was removed long ago

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8404 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instruction.def

index 2b9c1a7a848e01857f1c206d499488e170f386f3..3b3858ad1664553494d99a406c0c368e9b11bbc3 100644 (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)