[Lldb-commits] [PATCH] D96916: [lldb] Fix PushPlan to set subplan to private

Dave Lee via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 10 11:06:06 PST 2021


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG354d10530d26: [lldb] Fix PushPlan to set subplan to private (authored by kastiglione).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D96916/new/

https://reviews.llvm.org/D96916

Files:
  lldb/include/lldb/Target/ThreadPlan.h


Index: lldb/include/lldb/Target/ThreadPlan.h
===================================================================
--- lldb/include/lldb/Target/ThreadPlan.h
+++ lldb/include/lldb/Target/ThreadPlan.h
@@ -494,7 +494,7 @@
   // another thread plan is never either of the above.
   void PushPlan(lldb::ThreadPlanSP &thread_plan_sp) {
     GetThread().PushPlan(thread_plan_sp);
-    thread_plan_sp->SetPrivate(false);
+    thread_plan_sp->SetPrivate(true);
     thread_plan_sp->SetIsMasterPlan(false);
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96916.329716.patch
Type: text/x-patch
Size: 502 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210310/61a5ea6f/attachment.bin>


More information about the lldb-commits mailing list