commit | 1b088f33107798c544e0a872df4cc1921581eb66 | [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 | 34b176a1817418c59cac6dc411788b37d6d28f31 [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?"); }