JitArm64_Paired: Remove unused temp_gpr from ps_arith
This commit is contained in:
parent
0e58b3cfb7
commit
9af7772d91
|
@ -141,8 +141,6 @@ void JitArm64::ps_arith(UGeckoInstruction inst)
|
|||
result_reg = reg_encoder(V1Q);
|
||||
}
|
||||
|
||||
const ARM64Reg temp_gpr = m_accurate_nans && !singles ? gpr.GetReg() : ARM64Reg::INVALID_REG;
|
||||
|
||||
if (m_accurate_nans)
|
||||
{
|
||||
if (V0Q == ARM64Reg::INVALID_REG)
|
||||
|
@ -304,8 +302,6 @@ void JitArm64::ps_arith(UGeckoInstruction inst)
|
|||
fpr.Unlock(V1Q);
|
||||
if (V2Q != ARM64Reg::INVALID_REG)
|
||||
fpr.Unlock(V2Q);
|
||||
if (temp_gpr != ARM64Reg::INVALID_REG)
|
||||
gpr.Unlock(temp_gpr);
|
||||
|
||||
ASSERT_MSG(DYNA_REC, singles == singles_func(),
|
||||
"Register allocation turned singles into doubles in the middle of ps_arith");
|
||||
|
|
Loading…
Reference in New Issue