[llvm-commits] CVS: llvm/lib/ExecutionEngine/ExecutionEngine.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Dec 19 19:46:01 PST 2003


Changes in directory llvm/lib/ExecutionEngine:

ExecutionEngine.cpp updated: 1.39 -> 1.40

---
Log message:

Update for changes in the JIT


---
Diffs of the changes:  (+2 -2)

Index: llvm/lib/ExecutionEngine/ExecutionEngine.cpp
diff -u llvm/lib/ExecutionEngine/ExecutionEngine.cpp:1.39 llvm/lib/ExecutionEngine/ExecutionEngine.cpp:1.40
--- llvm/lib/ExecutionEngine/ExecutionEngine.cpp:1.39	Mon Dec  8 02:22:48 2003
+++ llvm/lib/ExecutionEngine/ExecutionEngine.cpp	Fri Dec 19 19:45:17 2003
@@ -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 @@
 
   // 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 {





More information about the llvm-commits mailing list