[Lldb-commits] [lldb] Reapply "[lldb] Implement basic support for reverse-continue (#125242)" (again) (PR #128156)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 21 02:00:35 PST 2025
================
@@ -635,10 +635,11 @@ bool Thread::SetupForResume() {
// what the current plan is.
lldb::RegisterContextSP reg_ctx_sp(GetRegisterContext());
- if (reg_ctx_sp) {
+ ProcessSP process_sp(GetProcess());
+ if (reg_ctx_sp && process_sp && direction == eRunForward) {
----------------
labath wrote:
merge conflict around here
https://github.com/llvm/llvm-project/pull/128156
More information about the lldb-commits
mailing list