Add new opcode for Invoke instruction
authorChris Lattner <sabre@nondot.org>
Sat, 13 Oct 2001 06:15:20 +0000 (06:15 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 13 Oct 2001 06:15:20 +0000 (06:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@736 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instruction.h

index 71bb8e25a1d749764ae7b212a79107baf03aa127..b1c340c50c749253e9713bb00f89259a1a876b90 100644 (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
   };