mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 15:49:25 +01:00
JitArm64_FloatingPoint: Remove unused temp_gpr from fp_arith
This commit is contained in:
parent
cff37a9f4f
commit
0e58b3cfb7
@ -132,8 +132,6 @@ void JitArm64::fp_arith(UGeckoInstruction inst)
|
|||||||
result_reg = reg_encoder(V1Q);
|
result_reg = reg_encoder(V1Q);
|
||||||
}
|
}
|
||||||
|
|
||||||
const ARM64Reg temp_gpr = m_accurate_nans && !single ? gpr.GetReg() : ARM64Reg::INVALID_REG;
|
|
||||||
|
|
||||||
switch (op5)
|
switch (op5)
|
||||||
{
|
{
|
||||||
case 18:
|
case 18:
|
||||||
@ -251,8 +249,6 @@ void JitArm64::fp_arith(UGeckoInstruction inst)
|
|||||||
fpr.Unlock(V0Q);
|
fpr.Unlock(V0Q);
|
||||||
if (V1Q != ARM64Reg::INVALID_REG)
|
if (V1Q != ARM64Reg::INVALID_REG)
|
||||||
fpr.Unlock(V1Q);
|
fpr.Unlock(V1Q);
|
||||||
if (temp_gpr != ARM64Reg::INVALID_REG)
|
|
||||||
gpr.Unlock(temp_gpr);
|
|
||||||
|
|
||||||
if (output_is_single)
|
if (output_is_single)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user