diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-16 18:21:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-16 18:21:33 +0000 |
commit | ec7c1ab1dafa0fdb383d0e6df4726cecb4c88c70 (patch) | |
tree | 4050bba6a75b892bc23a261065c5f1c1afc3a51a /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | bd1d382cc47dfc43ee758714bc22ab5a750bad15 (diff) |
Add support for unreachable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17056 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index d6e590d735..e146135cf5 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -145,6 +145,7 @@ public: void visitCallInst(CallInst &I) { visitCallSite (CallSite (&I)); } void visitInvokeInst(InvokeInst &I) { visitCallSite (CallSite (&I)); } void visitUnwindInst(UnwindInst &I); + void visitUnreachableInst(UnreachableInst &I); void visitShl(ShiftInst &I); void visitShr(ShiftInst &I); |