diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:15:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:15:20 +0000 |
commit | 72665af24de27a73754622b27863ed57d9be34f8 (patch) | |
tree | 4a63407acbb936d2c0e944893fd9b3a8c78389b5 | |
parent | 9686fd11c4f9086fa283c3140efff967536b4d16 (diff) |
Add new opcode for Invoke instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@736 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Instruction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index 71bb8e25a1..b1c340c50c 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -95,7 +95,7 @@ public: // enum TermOps { // These terminate basic blocks FirstTermOp = 1, - Ret = 1, Br, Switch, + Ret = 1, Br, Switch, Invoke, NumTermOps // Must remain at end of enum }; |