1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Update for changes in the JIT

llvm-svn: 10543
This commit is contained in:
Chris Lattner 2003-12-20 01:45:17 +00:00
parent 1cb1efedb3
commit 32658dbaf3

View File

@ -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 {