JitArm64_FloatingPoint: Remove unused temp_gpr from fp_arith

This commit is contained in:
Sintendo 2024-06-30 09:53:48 +02:00
parent cff37a9f4f
commit 0e58b3cfb7
1 changed files with 0 additions and 4 deletions

View File

@ -132,8 +132,6 @@ void JitArm64::fp_arith(UGeckoInstruction inst)
result_reg = reg_encoder(V1Q);
}
const ARM64Reg temp_gpr = m_accurate_nans && !single ? gpr.GetReg() : ARM64Reg::INVALID_REG;
switch (op5)
{
case 18:
@ -251,8 +249,6 @@ void JitArm64::fp_arith(UGeckoInstruction inst)
fpr.Unlock(V0Q);
if (V1Q != ARM64Reg::INVALID_REG)
fpr.Unlock(V1Q);
if (temp_gpr != ARM64Reg::INVALID_REG)
gpr.Unlock(temp_gpr);
if (output_is_single)
{