mirror of https://github.com/PCSX2/pcsx2.git
iR3000A/iR5900: Fix dev/debug build compile.
Remove JITCompileInBlock leftovers.
This commit is contained in:
parent
8c98f5d928
commit
6c9a2e96e1
|
@ -1561,7 +1561,7 @@ static void iopRecRecompile(const u32 startpc)
|
|||
|
||||
s_pCurBlock = PSX_GETBLOCK(startpc);
|
||||
|
||||
pxAssert(s_pCurBlock->GetFnptr() == (uptr)iopJITCompile || s_pCurBlock->GetFnptr() == (uptr)iopJITCompileInBlock);
|
||||
pxAssert(s_pCurBlock->GetFnptr() == (uptr)iopJITCompile);
|
||||
|
||||
s_pCurBlockEx = recBlocks.Get(HWADDR(startpc));
|
||||
|
||||
|
|
|
@ -2185,7 +2185,7 @@ static void recRecompile(const u32 startpc)
|
|||
|
||||
s_pCurBlock = PC_GETBLOCK(startpc);
|
||||
|
||||
pxAssert(s_pCurBlock->GetFnptr() == (uptr)JITCompile || s_pCurBlock->GetFnptr() == (uptr)JITCompileInBlock);
|
||||
pxAssert(s_pCurBlock->GetFnptr() == (uptr)JITCompile);
|
||||
|
||||
s_pCurBlockEx = recBlocks.Get(HWADDR(startpc));
|
||||
pxAssert(!s_pCurBlockEx || s_pCurBlockEx->startpc != HWADDR(startpc));
|
||||
|
|
Loading…
Reference in New Issue