[Lldb-commits] [lldb] [llvm] [lldb] Implement CLI support for reverse-continue (PR #132783)

Robert O'Callahan via lldb-commits lldb-commits at lists.llvm.org
Sun Mar 30 22:44:44 PDT 2025


================
@@ -744,6 +744,10 @@ let Command = "process continue" in {
     Arg<"BreakpointIDRange">, Desc<"Specify a breakpoint to continue to, temporarily "
     "ignoring other breakpoints.  Can be specified more than once.  "
     "The continue action will be done synchronously if this option is specified.">;
+  def thread_continue_forward : Option<"forward", "F">, Group<3>,
----------------
rocallahan wrote:

Processes have a persistent base direction. `--forward` forces forward, `--reverse` forces reverse, and neither means continue in the current dirction.

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


More information about the lldb-commits mailing list