diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:15:20 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:15:20 +0000 |
| commit | 56ee34b782febb14f1a3c21c043c4da3bff24d00 (patch) | |
| tree | 10ad4a983a31e1daa9d98da8ca024245273ce171 | |
| parent | 51499227a3b70e508465e50887e1f9047a9af4a9 (diff) | |
| download | bcm5719-llvm-56ee34b782febb14f1a3c21c043c4da3bff24d00.tar.gz bcm5719-llvm-56ee34b782febb14f1a3c21c043c4da3bff24d00.zip | |
Add new opcode for Invoke instruction
llvm-svn: 736
| -rw-r--r-- | llvm/include/llvm/Instruction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Instruction.h b/llvm/include/llvm/Instruction.h index 71bb8e25a1d..b1c340c50c7 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 }; |

