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 | e031097177e7b94648ff05455a63d64081b6d29f (patch) | |
tree | 065b62a11f643b06dec78f14b038541e270e7e87 /llvm | |
parent | 94d32536260f9e181cdf848df841de4628ebd49c (diff) | |
download | bcm5719-llvm-e031097177e7b94648ff05455a63d64081b6d29f.tar.gz bcm5719-llvm-e031097177e7b94648ff05455a63d64081b6d29f.zip |
The code model of JIT should default to JITDefault.
llvm-svn: 138819
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/include/llvm/ExecutionEngine/ExecutionEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h b/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h index 6f60635d565..7a8b9ee7a82 100644 --- a/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/llvm/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 |