iR3000A/iR5900: Fix dev/debug build compile.

Remove JITCompileInBlock leftovers.
This commit is contained in:
lightningterror 2025-01-13 01:44:26 +01:00
parent 8c98f5d928
commit 6c9a2e96e1
2 changed files with 2 additions and 2 deletions

View File

@ -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));

View File

@ -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));