mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
arm64jit: Fix reg size in jr delay slot path.
Can't use the 64-bit reg.
This commit is contained in:
parent
d3164d77d4
commit
4861cadb79
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue