[Lldb-commits] [lldb] [lldb][DynamicLoader] Fix lldb unable to stop at _dl_debug_state if user set it before the process launched. (PR #88792)
Zequan Wu via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 17 13:03:20 PDT 2024
================
@@ -572,9 +572,14 @@ ModuleSP DynamicLoaderPOSIXDYLD::LoadInterpreterModule() {
ModuleSpec module_spec(file, target.GetArchitecture());
if (ModuleSP module_sp = target.GetOrCreateModule(module_spec,
- true /* notify */)) {
+ false /* notify */)) {
----------------
ZequanWu wrote:
Updated coding style and added a comment here.
https://github.com/llvm/llvm-project/pull/88792
More information about the lldb-commits
mailing list