commit | 5c62a6969b0a8451ffd37d1f6517591bfa141d3b | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Tue Jun 17 16:49:02 2008 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Tue Jun 17 16:49:02 2008 +0000 |
tree | 36e60c3fb201e762b0bc38e2ddf1dc5446762038 | |
parent | 886cadbf5335964fa40402106646fc99e3f4be42 [diff] [blame] |
Don't forget to initialize SymbolSearchingDisabled. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52414 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/ExecutionEngine.cpp b/lib/ExecutionEngine/ExecutionEngine.cpp index 8b94ad0..94136d5 100644 --- a/lib/ExecutionEngine/ExecutionEngine.cpp +++ b/lib/ExecutionEngine/ExecutionEngine.cpp
@@ -40,6 +40,7 @@ ExecutionEngine::ExecutionEngine(ModuleProvider *P) : LazyFunctionCreator(0) { LazyCompilationDisabled = false; + SymbolSearchingDisabled = false; Modules.push_back(P); assert(P && "ModuleProvider is null?"); }