mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
Don't cache blocks that have breakpoints.
Broke breakpoint toggling. (cherry picked from commit 3d2ed9e20f2b917b10f359ee76c8724192e839c2)
This commit is contained in:
parent
80d83ed96f
commit
2ae43e0320
4 changed files with 27 additions and 14 deletions
|
@ -410,11 +410,7 @@ void CBasicBlock::HandleExternalFunctionReference(uintptr_t symbol, uint32 offse
|
|||
|
||||
bool CBasicBlock::HasBreakpoint() const
|
||||
{
|
||||
for(auto breakpointAddress : m_context.m_breakpoints)
|
||||
{
|
||||
if(breakpointAddress >= GetBeginAddress() && breakpointAddress <= GetEndAddress()) return true;
|
||||
}
|
||||
return false;
|
||||
return m_context.HasBreakpointInRange(GetBeginAddress(), GetEndAddress());
|
||||
}
|
||||
|
||||
uint32 CBasicBlock::BreakpointFilter(CMIPS* context)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue