[Lldb-commits] [lldb] [lldb] Implement CLI support for reverse-continue (PR #132783)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Sun Mar 30 15:34:43 PDT 2025


================
@@ -654,6 +672,10 @@ class CommandObjectProcessContinue : public CommandObjectParsed {
         }
       }
 
+      if (m_options.m_base_direction.has_value()) {
+        process->SetBaseDirection(*m_options.m_base_direction);
+      }
----------------
JDevlieghere wrote:

```suggestion
      if (m_options.m_base_direction.has_value())
        process->SetBaseDirection(*m_options.m_base_direction);
```

https://github.com/llvm/llvm-project/pull/132783


More information about the lldb-commits mailing list