[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #112079)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Dec 10 17:15:02 PST 2024
================
@@ -1363,9 +1375,51 @@ Status ProcessGDBRemote::DoResume() {
}
}
+ if (direction == RunDirection::eRunReverse && continue_packet_error) {
----------------
jimingham wrote:
Why do you care about continue_packet_error here? That was being manipulated by the code that tried to go forward. But you're going backwards here, so you shouldn't have gotten into any of that code, nor should you care what value the forward going code set this to.
https://github.com/llvm/llvm-project/pull/112079
More information about the lldb-commits
mailing list