commit | 953783e00c9934bc41077108fffeb1e2a17b00df | [log] [tgz] |
---|---|---|
author | Nadav Rotem <nrotem@apple.com> | Mon Apr 01 15:53:30 2013 +0000 |
committer | Nadav Rotem <nrotem@apple.com> | Mon Apr 01 15:53:30 2013 +0000 |
tree | f324b5c720825d0133edfe9a8e49eefd6ee6af14 | |
parent | f170cc9b2eb98efee40ee22cff6bcf401c209b00 [diff] [blame] |
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
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index e95db2f..2952d7e 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -178,6 +178,7 @@ 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!");