[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #112079)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 17 02:00:06 PST 2024
================
@@ -583,6 +583,14 @@ SBError SBProcess::Continue() {
return sb_error;
}
+SBError SBProcess::ContinueInDirection(RunDirection direction) {
+ ProcessSP process_sp(GetSP());
+ if (process_sp) {
+ process_sp->SetBaseDirection(direction);
+ }
----------------
labath wrote:
```suggestion
if (ProcessSP process_sp(GetSP()))
process_sp->SetBaseDirection(direction);
```
https://github.com/llvm/llvm-project/pull/112079
More information about the lldb-commits
mailing list