diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-04-01 15:53:30 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-04-01 15:53:30 +0000 |
commit | 953783e00c9934bc41077108fffeb1e2a17b00df (patch) | |
tree | f324b5c720825d0133edfe9a8e49eefd6ee6af14 /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | f170cc9b2eb98efee40ee22cff6bcf401c209b00 (diff) |
Add support for vector data types in the LLVM interpreter.
Patch by:
Veselov, Yuri <Yuri.Veselov@intel.com>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178469 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 e95db2fc4e..2952d7eabe 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -178,6 +178,7 @@ public: void visitAShr(BinaryOperator &I); void visitVAArgInst(VAArgInst &I); + void visitExtractElementInst(ExtractElementInst &I); void visitInstruction(Instruction &I) { errs() << I << "\n"; llvm_unreachable("Instruction not interpretable yet!"); |