[Lldb-commits] [lldb] [lldb][DynamicLoader] Fix lldb unable to stop at _dl_debug_state if user set it before the process launched. (PR #88792)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 17 10:54:33 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 */)) {
----------------
labath wrote:
Might as well change to the [official style](https://llvm.org/docs/CodingStandards.html#comment-formatting): `/*notify=*/false`
https://github.com/llvm/llvm-project/pull/88792
More information about the lldb-commits
mailing list