From 72665af24de27a73754622b27863ed57d9be34f8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 13 Oct 2001 06:15:20 +0000 Subject: [PATCH] Add new opcode for Invoke instruction git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@736 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instruction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }; -- 2.34.1