summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-11-17 16:06:43 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-11-17 16:06:43 +0000
commit6aec29848676494867e26307698155bc2c5a4033 (patch)
tree5cf5e68fb4f1a6c3286462df234750dd6221e356 /tools/lli
parent6d135972bf4e7fdc4de6b0538d6a3b91a06e3a5d (diff)
downloadllvm-6aec29848676494867e26307698155bc2c5a4033.tar.gz
llvm-6aec29848676494867e26307698155bc2c5a4033.tar.bz2
llvm-6aec29848676494867e26307698155bc2c5a4033.tar.xz
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/Makefile2
-rw-r--r--tools/lli/lli.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/lli/Makefile b/tools/lli/Makefile
index 3217d23d31..80aa82b4d6 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 507e38d920..add6248fda 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"