forked from OSchip/llvm-project
Return the right answer for ShouldStop for the RunToAddress plan. This isn't
strictly necessary because RunToAddress is always used as a subsidiary plan, so it's ShouldStop seldom matters. But get it right anyway. llvm-svn: 250083
This commit is contained in:
parent
ee205c43f7
commit
1fd2f08ea9
|
@ -195,7 +195,7 @@ ThreadPlanRunToAddress::DoPlanExplainsStop (Event *event_ptr)
|
|||
bool
|
||||
ThreadPlanRunToAddress::ShouldStop (Event *event_ptr)
|
||||
{
|
||||
return false;
|
||||
return AtOurAddress();
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Reference in New Issue