diff options
author | Nicolas Geoffray <nicolas.geoffray@lip6.fr> | 2011-08-30 19:50:33 +0000 |
---|---|---|
committer | Nicolas Geoffray <nicolas.geoffray@lip6.fr> | 2011-08-30 19:50:33 +0000 |
commit | 5af214fef09396433bb38c97f33bfdc1f03118c7 (patch) | |
tree | 76368653f9875366a63262690aaff1b294e8d49e /include | |
parent | 151ab3e2f7b69d2b46fdc25cbad9d43f4a827ef1 (diff) | |
download | external_llvm-5af214fef09396433bb38c97f33bfdc1f03118c7.zip external_llvm-5af214fef09396433bb38c97f33bfdc1f03118c7.tar.gz external_llvm-5af214fef09396433bb38c97f33bfdc1f03118c7.tar.bz2 |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ExecutionEngine/ExecutionEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h index 6f60635..7a8b9ee 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 |