Replace boolean parameter with enum value according r342633

llvm-svn: 342998
This commit is contained in:
Tatyana Krasnukha 2018-09-25 17:59:44 +00:00
parent 06f4ff1952
commit 891d7504bb
1 changed files with 2 additions and 2 deletions

View File

@ -335,7 +335,7 @@ ProcessFreeBSD::DoAttachToProcessWithID(lldb::pid_t pid,
GetTarget().SetArchitecture(module_arch);
// Initialize the target module list
GetTarget().SetExecutableModule(exe_module_sp, true);
GetTarget().SetExecutableModule(exe_module_sp, eLoadDependentsYes);
SetSTDIOFileDescriptor(m_monitor->GetTerminalFD());
@ -519,7 +519,7 @@ void ProcessFreeBSD::DoDidExec() {
executable_search_paths.GetSize() ? &executable_search_paths : NULL);
if (!error.Success())
return;
target->SetExecutableModule(exe_module_sp, true);
target->SetExecutableModule(exe_module_sp, eLoadDependentsYes);
}
}
}