mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-17 15:37:39 +00:00
Merge pull request #10871 from unknownbrackets/arm64jit
arm64jit: Fix reg size in jr delay slot path
This commit is contained in:
commit
fea97f2bc8
@ -576,7 +576,7 @@ void Arm64Jit::Comp_JumpReg(MIPSOpcode op)
|
||||
} else {
|
||||
// Since we can't be in a delay slot, should be safe to steal FLAGTEMPREG for a temp reg.
|
||||
// It will be saved, even if a function is called.
|
||||
destReg = FLAGTEMPREG;
|
||||
destReg = DecodeReg(FLAGTEMPREG);
|
||||
gpr.MapReg(rs);
|
||||
MOV(destReg, gpr.R(rs));
|
||||
if (andLink)
|
||||
|
Loading…
x
Reference in New Issue
Block a user