From 56ee34b782febb14f1a3c21c043c4da3bff24d00 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 llvm-svn: 736 --- llvm/include/llvm/Instruction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/include/llvm/Instruction.h b/llvm/include/llvm/Instruction.h index 71bb8e25a1d7..b1c340c50c74 100644 --- a/llvm/include/llvm/Instruction.h +++ b/llvm/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 };