================
@@ -3239,6 +3241,14 @@ Status Process::ConnectRemote(llvm::StringRef 
remote_url) {
   return error;
 }
 
+void Process::SetRunDirection(RunDirection direction) {
+  if (m_base_direction == direction) {
+    return;
+  }
+  m_thread_list.DiscardThreadPlans();
----------------
jimingham wrote:

Somewhere we should say that we're allowing ourselves the simplification that 
the ThreadPlanStacks have to be homogeneous in direction, but that we should be 
able to relax that in the future.  Maybe here or maybe there should be a more 
general comment describing your strategy here.

https://github.com/llvm/llvm-project/pull/112079
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to