[llvm-commits] [llvm] r138819 - /llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h

Nicolas Geoffray nicolas.geoffray at lip6.fr
Tue Aug 30 12:50:33 PDT 2011


Author: geoffray
Date: Tue Aug 30 14:50:33 2011
New Revision: 138819

URL: http://llvm.org/viewvc/llvm-project?rev=138819&view=rev
Log:
The code model of JIT should default to JITDefault.


Modified:
    llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h?rev=138819&r1=138818&r2=138819&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/ExecutionEngine.h Tue Aug 30 14:50:33 2011
@@ -204,7 +204,7 @@
                                     bool GVsWithCode = true,
                                     Reloc::Model RM = Reloc::Default,
                                     CodeModel::Model CMM =
-                                      CodeModel::Default);
+                                      CodeModel::JITDefault);
 
   /// addModule - Add a Module to the list of modules that we can JIT from.
   /// Note that this takes ownership of the Module: when the ExecutionEngine is





More information about the llvm-commits mailing list