From d1cab3e6ce508e593b17fdd660ed8cc4ea486d72 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Fri, 5 Sep 2003 19:42:34 +0000 Subject: [PATCH] Interpreter, JIT moved to lib/ExecutionEngine (includes -> llvm/ExecutionEngine) Build lli using executionengine library git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8372 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/lli/Makefile | 3 +-- tools/lli/lli.cpp | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 666a1f69b54..1c64b6933d8 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -1,12 +1,11 @@ LEVEL = ../.. TOOLNAME = lli -PARALLEL_DIRS = Interpreter JIT # Get the $(ARCH) setting include $(LEVEL)/Makefile.config # Generic JIT libraries -JITLIBS = lli-jit codegen +JITLIBS = lli-jit codegen executionengine ARCHLIBS = # You can enable the X86 JIT on a non-X86 host by setting the flag diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 125f0758567..ebe618a90eb 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -9,10 +9,10 @@ // //===----------------------------------------------------------------------===// -#include "ExecutionEngine.h" -#include "GenericValue.h" #include "Support/CommandLine.h" #include "Support/Debug.h" +#include "llvm/ExecutionEngine/ExecutionEngine.h" +#include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/Bytecode/Reader.h" #include "llvm/Module.h" #include "llvm/Target/TargetMachineImpls.h"