[Lldb-commits] [lldb] [lldb] ensure comment conforms to LLVM guidelines (PR #170533)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Dec 3 11:06:33 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Charles Zablit (charles-zablit)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/170533.diff
2 Files Affected:
- (modified) lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp (+1-1)
- (modified) lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (+1-1)
``````````diff
diff --git a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
index 870a0511b7926..4cc39f928ee1e 100644
--- a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
+++ b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
@@ -82,7 +82,7 @@ ProcessSP ProcessWindows::CreateInstance(lldb::TargetSP target_sp,
const FileSpec *crash_file_path,
bool can_connect) {
if (crash_file_path)
- return nullptr; // Cannot create a Windows process from a crash_file
+ return nullptr; // Cannot create a Windows process from a crash_file.
return ProcessSP(new ProcessWindows(target_sp, listener_sp));
}
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index 83e358677467b..1ba99d78aea32 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -211,7 +211,7 @@ lldb::ProcessSP ProcessGDBRemote::CreateInstance(
lldb::TargetSP target_sp, ListenerSP listener_sp,
const FileSpec *crash_file_path, bool can_connect) {
if (crash_file_path)
- return nullptr; // Cannot create a GDBRemote process from a crash_file
+ return nullptr; // Cannot create a GDBRemote process from a crash_file.
return lldb::ProcessSP(new ProcessGDBRemote(target_sp, listener_sp));
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/170533
More information about the lldb-commits
mailing list