[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)
Robert O'Callahan via lldb-commits
lldb-commits at lists.llvm.org
Mon Jul 22 16:08:35 PDT 2024
================
@@ -3281,7 +3288,11 @@ Status Process::PrivateResume() {
"Process::PrivateResume PreResumeActions failed, not resuming.");
} else {
m_mod_id.BumpResumeID();
- error = DoResume();
+ if (direction == eRunForward) {
+ error = DoResume();
----------------
rocallahan wrote:
I've updated the branch with all these changes.
https://github.com/llvm/llvm-project/pull/99736
More information about the lldb-commits
mailing list