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);
}
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);
}
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits