summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorXerxes Ranby <xerxes@zafena.se>2009-07-19 08:10:01 +0000
committerXerxes Ranby <xerxes@zafena.se>2009-07-19 08:10:01 +0000
commit6ce6daae38c5dd95e7daa5790d97398343564588 (patch)
treebad9d746cca62770f6fe28a0226e500f6bbda424 /examples
parent7e7dc45eb15d3739564f2a63ab1c468c57d94ff8 (diff)
downloadllvm-6ce6daae38c5dd95e7daa5790d97398343564588.tar.gz
llvm-6ce6daae38c5dd95e7daa5790d97398343564588.tar.bz2
llvm-6ce6daae38c5dd95e7daa5790d97398343564588.tar.xz
Fix: Kaleidoscope link in JIT and Interpreter by including JIT.h and Interpreter.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/Kaleidoscope/toy.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/Kaleidoscope/toy.cpp b/examples/Kaleidoscope/toy.cpp
index abcd412f07..0035f3928d 100644
--- a/examples/Kaleidoscope/toy.cpp
+++ b/examples/Kaleidoscope/toy.cpp
@@ -1,5 +1,7 @@
#include "llvm/DerivedTypes.h"
#include "llvm/ExecutionEngine/ExecutionEngine.h"
+#include "llvm/ExecutionEngine/Interpreter.h"
+#include "llvm/ExecutionEngine/JIT.h"
#include "llvm/LLVMContext.h"
#include "llvm/Module.h"
#include "llvm/ModuleProvider.h"