[Lldb-commits] [lldb] [lldb] correct inconsistent order of messages on process launch (PR #73173)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 23 00:43:25 PST 2023
================
@@ -282,6 +280,8 @@ class CommandObjectProcessLaunch : public CommandObjectProcessLaunchOrAttach {
exe_module_sp->GetFileSpec().GetPath().c_str(), archname);
}
result.SetStatus(eReturnStatusSuccessFinishResult);
+ if (!data.empty())
----------------
DavidSpickett wrote:
Please add a comment something like:
```
// This message will refer to an event that happened after the process launched.
```
https://github.com/llvm/llvm-project/pull/73173
More information about the lldb-commits
mailing list