From: Nicolas Geoffray Date: Tue, 30 Aug 2011 19:50:33 +0000 (+0000) Subject: The code model of JIT should default to JITDefault. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=5af214fef09396433bb38c97f33bfdc1f03118c7;p=oota-llvm.git The code model of JIT should default to JITDefault. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138819 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h index 6f60635d565..7a8b9ee7a82 100644 --- a/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/include/llvm/ExecutionEngine/ExecutionEngine.h @@ -204,7 +204,7 @@ public: 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