summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-09 19:31:15 +0000
committerChris Lattner <sabre@nondot.org>2006-11-09 19:31:15 +0000
commit87aee74ccbbae2c0c2665ae7d4152fc46b34ceca (patch)
tree91cb8548e2d745c315597b92c3f6654c81fb43cf /llvm/lib/ExecutionEngine
parent6dbe06de3924563b14f54c402a82d1270f5015a8 (diff)
downloadbcm5719-llvm-87aee74ccbbae2c0c2665ae7d4152fc46b34ceca.tar.gz
bcm5719-llvm-87aee74ccbbae2c0c2665ae7d4152fc46b34ceca.zip
init ivar
llvm-svn: 31601
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r--llvm/lib/ExecutionEngine/ExecutionEngine.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
index f61369cd505..9b50669777d 100644
--- a/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
+++ b/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
@@ -36,11 +36,13 @@ ExecutionEngine::EECtorFn ExecutionEngine::JITCtor = 0;
ExecutionEngine::EECtorFn ExecutionEngine::InterpCtor = 0;
ExecutionEngine::ExecutionEngine(ModuleProvider *P) {
+ LazyCompilationDisabled = false;
Modules.push_back(P);
assert(P && "ModuleProvider is null?");
}
ExecutionEngine::ExecutionEngine(Module *M) {
+ LazyCompilationDisabled = false;
assert(M && "Module is null?");
Modules.push_back(new ExistingModuleProvider(M));
}
OpenPOWER on IntegriCloud