Add new opcode for Invoke instruction

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@736 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-13 06:15:20 +00:00
parent 9686fd11c4
commit 72665af24d

View File

@ -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
};