diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-27 20:30:28 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-10-27 20:30:28 +0000 |
commit | 4567db45b8efa292a72c4c73bc74794a84a02658 (patch) | |
tree | f56bef9af653a3bc25ec68e7970810cc1c3b78b2 /llvm/lib/ExecutionEngine/ExecutionEngine.cpp | |
parent | 6506d6c3d71f03b1a1cec62d08a109e4a6dc8bc2 (diff) | |
download | bcm5719-llvm-4567db45b8efa292a72c4c73bc74794a84a02658.tar.gz bcm5719-llvm-4567db45b8efa292a72c4c73bc74794a84a02658.zip |
Change the JIT to compile eagerly by default as agreed in
http://llvm.org/PR5184, and beef up the comments to describe what both options
do and the risks of lazy compilation in the presence of threads.
llvm-svn: 85295
Diffstat (limited to 'llvm/lib/ExecutionEngine/ExecutionEngine.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/ExecutionEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp index 16808a749d1..c61ab875972 100644 --- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp @@ -49,7 +49,7 @@ ExecutionEngine::EERegisterFn ExecutionEngine::ExceptionTableRegister = 0; ExecutionEngine::ExecutionEngine(ModuleProvider *P) : EEState(*this), LazyFunctionCreator(0) { - LazyCompilationDisabled = false; + CompilingLazily = false; GVCompilationDisabled = false; SymbolSearchingDisabled = false; DlsymStubsEnabled = false; |