diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-05 19:39:22 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-05 19:39:22 +0000 |
commit | f3a300d57858cd406044c03ccb97ece4091387d8 (patch) | |
tree | 01b8af23fdec6d0303959a1fec2d96ca34d85aa8 /llvm/lib/ExecutionEngine | |
parent | 28f8e412031db19ce33a1085fe3727eb51a63b35 (diff) | |
download | bcm5719-llvm-f3a300d57858cd406044c03ccb97ece4091387d8.tar.gz bcm5719-llvm-f3a300d57858cd406044c03ccb97ece4091387d8.zip |
ExecutionEngine.h, GenericValue.h --> include/llvm/ExecutionEngine/
Build ExecutionEngine as library.
llvm-svn: 8370
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 8 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 4 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/JIT.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/JIT/VM.h | 2 | ||||
-rw-r--r-- | llvm/lib/ExecutionEngine/Makefile | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index b4baf9f8fff..8dc1d5a84ba 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -6,14 +6,14 @@ //===----------------------------------------------------------------------===// #define DEBUG_TYPE "jit" -#include "ExecutionEngine.h" -#include "GenericValue.h" +#include "Support/Debug.h" +#include "Support/Statistic.h" +#include "llvm/ExecutionEngine/ExecutionEngine.h" +#include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/DerivedTypes.h" #include "llvm/Constants.h" #include "llvm/Module.h" #include "llvm/Target/TargetData.h" -#include "Support/Debug.h" -#include "Support/Statistic.h" #include "Config/dlfcn.h" #include "JIT/VM.h" #include "Interpreter/Interpreter.h" diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index a59ebade36f..5199e1fa60a 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -7,8 +7,8 @@ #ifndef LLI_INTERPRETER_H #define LLI_INTERPRETER_H -#include "../ExecutionEngine.h" -#include "../GenericValue.h" +#include "llvm/ExecutionEngine/ExecutionEngine.h" +#include "llvm/ExecutionEngine/GenericValue.h" #include "Support/DataTypes.h" #include "llvm/Assembly/CachedWriter.h" #include "llvm/Target/TargetData.h" diff --git a/llvm/lib/ExecutionEngine/JIT/JIT.cpp b/llvm/lib/ExecutionEngine/JIT/JIT.cpp index 4c4c2221e32..d2de0a8b50c 100644 --- a/llvm/lib/ExecutionEngine/JIT/JIT.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JIT.cpp @@ -6,7 +6,7 @@ //===----------------------------------------------------------------------===// #include "VM.h" -#include "../GenericValue.h" +#include "llvm/ExecutionEngine/GenericValue.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachineImpls.h" #include "llvm/Module.h" diff --git a/llvm/lib/ExecutionEngine/JIT/VM.h b/llvm/lib/ExecutionEngine/JIT/VM.h index 9a7a645a4ee..f79be1f3495 100644 --- a/llvm/lib/ExecutionEngine/JIT/VM.h +++ b/llvm/lib/ExecutionEngine/JIT/VM.h @@ -7,7 +7,7 @@ #ifndef VM_H #define VM_H -#include "../ExecutionEngine.h" +#include "llvm/ExecutionEngine/ExecutionEngine.h" #include "llvm/PassManager.h" #include <map> diff --git a/llvm/lib/ExecutionEngine/Makefile b/llvm/lib/ExecutionEngine/Makefile index 666a1f69b54..3757bedf6d9 100644 --- a/llvm/lib/ExecutionEngine/Makefile +++ b/llvm/lib/ExecutionEngine/Makefile @@ -1,5 +1,5 @@ LEVEL = ../.. -TOOLNAME = lli +LIBRARYNAME = executionengine PARALLEL_DIRS = Interpreter JIT # Get the $(ARCH) setting |