From: Chris Lattner Date: Sat, 13 Oct 2001 06:15:20 +0000 (+0000) Subject: Add new opcode for Invoke instruction X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=72665af24de27a73754622b27863ed57d9be34f8;p=oota-llvm.git Add new opcode for Invoke instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@736 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index 71bb8e25a1d..b1c340c50c7 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 };