================ @@ -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 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits