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:
Jim Ingham 2015-10-12 19:03:32 +00:00
parent ee205c43f7
commit 1fd2f08ea9
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ ThreadPlanRunToAddress::DoPlanExplainsStop (Event *event_ptr)
bool
ThreadPlanRunToAddress::ShouldStop (Event *event_ptr)
{
return false;
return AtOurAddress();
}
bool