aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-20 01:45:17 +0000
committerChris Lattner <sabre@nondot.org>2003-12-20 01:45:17 +0000
commit61612df9cb596448b8310e479d568d6b2a8e8a4c (patch)
treed52808bd01af41291345387a252136f8958705a8 /lib/ExecutionEngine
parent1e60a9165dc4d6ce5650dacc026f2942696af920 (diff)
downloadexternal_llvm-61612df9cb596448b8310e479d568d6b2a8e8a4c.zip
external_llvm-61612df9cb596448b8310e479d568d6b2a8e8a4c.tar.gz
external_llvm-61612df9cb596448b8310e479d568d6b2a8e8a4c.tar.bz2
Update for changes in the JIT
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10543 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/ExecutionEngine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp
index 0252595..dd5b6a4 100644
--- a/lib/ExecutionEngine/ExecutionEngine.cpp
+++ b/lib/ExecutionEngine/ExecutionEngine.cpp
@@ -14,7 +14,7 @@
#define DEBUG_TYPE "jit"
#include "Interpreter/Interpreter.h"
-#include "JIT/VM.h"
+#include "JIT/JIT.h"
#include "llvm/Constants.h"
#include "llvm/DerivedTypes.h"
#include "llvm/Module.h"
@@ -55,7 +55,7 @@ ExecutionEngine *ExecutionEngine::create(ModuleProvider *MP,
// Unless the interpreter was explicitly selected, make a JIT.
if (!ForceInterpreter)
- EE = VM::create(MP);
+ EE = JIT::create(MP);
// If we can't make a JIT, make an interpreter instead.
try {