[Lldb-commits] [lldb] [lldb] Implement delayed breakpoints (PR #192971)

via lldb-commits lldb-commits at lists.llvm.org
Thu Apr 30 07:26:53 PDT 2026


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff origin/main HEAD --extensions h,c,cpp -- lldb/test/API/functionalities/breakpoint/delayed_breakpoints/main.c lldb/include/lldb/Target/Process.h lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp lldb/source/Plugins/Process/scripted/ScriptedProcess.cpp lldb/source/Plugins/Process/scripted/ScriptedThread.cpp lldb/source/Target/Process.cpp lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp --diff_from_common_commit
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/main.c b/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/main.c
index 4a308fe53..a9086f89a 100644
--- a/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/main.c
+++ b/lldb/test/API/functionalities/breakpoint/delayed_breakpoints/main.c
@@ -1,7 +1,7 @@
 int break_on_me() {
-  int i = 10; //breakhere
+  int i = 10; // breakhere
   i++;
-  return i; //secondbreak
+  return i; // secondbreak
 }
 
 int main() { return break_on_me(); }

``````````

</details>


https://github.com/llvm/llvm-project/pull/192971


More information about the lldb-commits mailing list