Don't forget to initialize SymbolSearchingDisabled.
authorEvan Cheng <evan.cheng@apple.com>
Tue, 17 Jun 2008 16:49:02 +0000 (16:49 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Tue, 17 Jun 2008 16:49:02 +0000 (16:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52414 91177308-0d34-0410-b5e6-96231b3b80d8

lib/ExecutionEngine/ExecutionEngine.cpp

index 8b94ad02840dc8e6fbe386c22601ab7e685f01c2..94136d54af0c5e150f3d518f4f85104026e5d3ba 100644 (file)
@@ -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?");
 }