Skip to content

Commit

Permalink
x86: Fix 32-bit IR jit block entry.
Browse files Browse the repository at this point in the history
  • Loading branch information
unknownbrackets committed Oct 3, 2023
1 parent 008055d commit 521335c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/MIPS/x86/X64IRAsm.cpp
Expand Up @@ -247,7 +247,7 @@ void X64JitBackend::GenerateFixedCode(MIPSState *mipsState) {
FixupBranch needsCompile = J_CC(CC_NE);
// We don't mask here - that's baked into jitbase.
#if PPSSPP_ARCH(X86)
LEA(32, SCRATCH1, MDisp(SCRATCH1, (u32)GetBasePtr() - MIPS_EMUHACK_VALUE_MASK));
LEA(32, SCRATCH1, MDisp(SCRATCH1, (u32)GetBasePtr() - MIPS_EMUHACK_OPCODE));
#elif PPSSPP_ARCH(AMD64)
if (jitbaseInR15) {
ADD(64, R(SCRATCH1), R(JITBASEREG));
Expand Down

0 comments on commit 521335c

Please sign in to comment.