jingham added inline comments.
================ Comment at: lldb/source/Target/Thread.cpp:601 raw_stop_description = stop_info_sp->GetDescription(); + assert(!raw_stop_description.empty() && + "StopInfo returned an empty description."); ---------------- It is possible to have a StopInfo with reason eStopReasonNone. I don't think we currently use that, but there's nothing outlawing it. We should treat that the same as no stop reason, so we shouldn't require a description in that case. Other than that this is fine. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D74157/new/ https://reviews.llvm.org/D74157 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits