diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-20 01:45:17 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-20 01:45:17 +0000 |
commit | 61612df9cb596448b8310e479d568d6b2a8e8a4c (patch) | |
tree | d52808bd01af41291345387a252136f8958705a8 /lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | 1e60a9165dc4d6ce5650dacc026f2942696af920 (diff) |
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/ExecutionEngine.cpp')
-rw-r--r-- | lib/ExecutionEngine/ExecutionEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 0252595926..dd5b6a4f5b 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 { |