forked from OSchip/llvm-project
Fix a bug introduced in an earlier revision: actually return the StopReason, when we have a StopInfo object.
llvm-svn: 164825
This commit is contained in:
parent
d2e6f65b1b
commit
e26391a43f
|
@ -210,7 +210,7 @@ Thread::GetStopReason()
|
|||
{
|
||||
lldb::StopInfoSP stop_info_sp (GetStopInfo ());
|
||||
if (stop_info_sp)
|
||||
stop_info_sp->GetStopReason();
|
||||
return stop_info_sp->GetStopReason();
|
||||
return eStopReasonNone;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue