summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-06-17 16:49:02 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-06-17 16:49:02 +0000
commit1b088f33107798c544e0a872df4cc1921581eb66 (patch)
tree36e60c3fb201e762b0bc38e2ddf1dc5446762038 /lib/ExecutionEngine
parent34b176a1817418c59cac6dc411788b37d6d28f31 (diff)
downloadllvm-1b088f33107798c544e0a872df4cc1921581eb66.tar.gz
llvm-1b088f33107798c544e0a872df4cc1921581eb66.tar.bz2
llvm-1b088f33107798c544e0a872df4cc1921581eb66.tar.xz
Don't forget to initialize SymbolSearchingDisabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/ExecutionEngine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp
index 8b94ad0284..94136d54af 100644
--- a/lib/ExecutionEngine/ExecutionEngine.cpp
+++ b/lib/ExecutionEngine/ExecutionEngine.cpp
@@ -40,6 +40,7 @@ ExecutionEngine::EERegisterFn ExecutionEngine::ExceptionTableRegister = 0;
ExecutionEngine::ExecutionEngine(ModuleProvider *P) : LazyFunctionCreator(0) {
LazyCompilationDisabled = false;
+ SymbolSearchingDisabled = false;
Modules.push_back(P);
assert(P && "ModuleProvider is null?");
}