Author: Jason Molenda
Date: 2025-02-12T14:00:41-08:00
New Revision: fa71238da800f3a818ec0e0649462389dc577890

URL: 
https://github.com/llvm/llvm-project/commit/fa71238da800f3a818ec0e0649462389dc577890
DIFF: 
https://github.com/llvm/llvm-project/commit/fa71238da800f3a818ec0e0649462389dc577890.diff

LOG: [lldb] inserted a typeo when checking in a suggested fix

Added: 
    

Modified: 
    lldb/source/Target/ThreadPlanStepOut.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Target/ThreadPlanStepOut.cpp 
b/lldb/source/Target/ThreadPlanStepOut.cpp
index 95e51408dbcdc..a05c46db6b8ca 100644
--- a/lldb/source/Target/ThreadPlanStepOut.cpp
+++ b/lldb/source/Target/ThreadPlanStepOut.cpp
@@ -365,7 +365,7 @@ bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) {
 
   if (!done) {
     StopInfoSP stop_info_sp = GetPrivateStopInfo();
-    if (stop_info && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
+    if (stop_info_sp && stop_info_sp->GetStopReason() == 
eStopReasonBreakpoint) {
       StackID frame_zero_id = 
GetThread().GetStackFrameAtIndex(0)->GetStackID();
       done = !(frame_zero_id < m_step_out_to_id);
     }


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to