mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-30 06:32:56 +00:00
JitArm64: addex - Skip temp reg allocation
This commit is contained in:
parent
5d647251f7
commit
defe97d9f1
@ -1435,10 +1435,9 @@ void JitArm64::addex(UGeckoInstruction inst)
|
||||
}
|
||||
case CarryFlag::InHostCarry:
|
||||
{
|
||||
ARM64Reg WA = gpr.GetReg();
|
||||
MOVI2R(WA, i + j);
|
||||
ADC(gpr.R(d), WA, ARM64Reg::WZR);
|
||||
gpr.Unlock(WA);
|
||||
ARM64Reg RD = gpr.R(d);
|
||||
MOVI2R(RD, i + j);
|
||||
ADC(RD, RD, ARM64Reg::WZR);
|
||||
break;
|
||||
}
|
||||
case CarryFlag::ConstantTrue:
|
||||
|
Loading…
x
Reference in New Issue
Block a user