Update for changes in the JIT
authorChris Lattner <sabre@nondot.org>
Sat, 20 Dec 2003 01:45:17 +0000 (01:45 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 20 Dec 2003 01:45:17 +0000 (01:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10543 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp

index 0252595926ecd59ba395b0d8f9c72bc313d737fd..dd5b6a4f5b774635eb71acb92c791680c0df3fb6 100644 (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 {