From: Xerxes Ranby Date: Sun, 19 Jul 2009 08:10:01 +0000 (+0000) Subject: Fix: Kaleidoscope link in JIT and Interpreter by including JIT.h and Interpreter.h X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6ce6daae38c5dd95e7daa5790d97398343564588;p=oota-llvm.git 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 --- diff --git a/examples/Kaleidoscope/toy.cpp b/examples/Kaleidoscope/toy.cpp index abcd412f077..0035f3928d7 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"