Skip to content

Commit

Permalink
iR3000A/iR5900: Fix dev/debug build compile.
Browse files Browse the repository at this point in the history
Remove JITCompileInBlock leftovers.
  • Loading branch information
lightningterror committed Jan 13, 2025
1 parent 8c98f5d commit b14cbbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pcsx2/x86/iR3000A.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down
2 changes: 1 addition & 1 deletion pcsx2/x86/ix86-32/iR5900.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit b14cbbe

Please sign in to comment.