Revert "[lldb/Target] Add Assert StackFrame Recognizer"

This reverts commit 03a6b858fd.

The test doesn't pass on Debian.
This commit is contained in:
Med Ismail Bennani
2020-01-28 18:40:08 +01:00
parent ac9b2a6297
commit 954d04295b
17 changed files with 21 additions and 380 deletions

View File

@@ -325,8 +325,7 @@ size_t SBThread::GetStopDescription(char *dst, size_t dst_len) {
StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo();
if (stop_info_sp) {
const char *stop_desc =
exe_ctx.GetThreadPtr()->GetStopDescription().data();
const char *stop_desc = stop_info_sp->GetDescription();
if (stop_desc) {
if (dst)
return ::snprintf(dst, dst_len, "%s", stop_desc);