diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-11-17 16:06:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-11-17 16:06:43 +0000 |
commit | 6aec29848676494867e26307698155bc2c5a4033 (patch) | |
tree | 5cf5e68fb4f1a6c3286462df234750dd6221e356 /tools/lli | |
parent | 6d135972bf4e7fdc4de6b0538d6a3b91a06e3a5d (diff) | |
download | external_llvm-6aec29848676494867e26307698155bc2c5a4033.zip external_llvm-6aec29848676494867e26307698155bc2c5a4033.tar.gz external_llvm-6aec29848676494867e26307698155bc2c5a4033.tar.bz2 |
MCJIT: Stub out MCJIT implementation, still doesn't do anything useful.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119509 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r-- | tools/lli/Makefile | 2 | ||||
-rw-r--r-- | tools/lli/lli.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/lli/Makefile b/tools/lli/Makefile index 3217d23..80aa82b 100644 --- a/tools/lli/Makefile +++ b/tools/lli/Makefile @@ -9,7 +9,7 @@ LEVEL := ../.. TOOLNAME := lli -LINK_COMPONENTS := jit interpreter nativecodegen bitreader asmparser selectiondag +LINK_COMPONENTS := mcjit jit interpreter nativecodegen bitreader asmparser selectiondag # Enable JIT support include $(LEVEL)/Makefile.common diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp index 507e38d..add6248 100644 --- a/tools/lli/lli.cpp +++ b/tools/lli/lli.cpp @@ -23,6 +23,7 @@ #include "llvm/ExecutionEngine/Interpreter.h" #include "llvm/ExecutionEngine/JIT.h" #include "llvm/ExecutionEngine/JITEventListener.h" +#include "llvm/ExecutionEngine/MCJIT.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/IRReader.h" #include "llvm/Support/ManagedStatic.h" |