[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 23 09:47:11 PDT 2024
================
@@ -3139,6 +3146,7 @@ void PruneThreadPlans();
// m_currently_handling_do_on_removals are true,
// Resume will only request a resume, using this
// flag to check.
+ lldb::RunDirection m_last_run_direction;
----------------
clayborg wrote:
Feel free to initialize this here so we don't have to change the constructor:
```
lldb::RunDirection m_last_run_direction = lldb::eRunForward;
```
https://github.com/llvm/llvm-project/pull/99736
More information about the lldb-commits
mailing list