mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-21 03:24:58 +00:00
JitArm64_Paired: Remove unused temp_gpr from ps_arith
This commit is contained in:
parent
0e58b3cfb7
commit
9af7772d91
1 changed files with 0 additions and 4 deletions
|
@ -141,8 +141,6 @@ void JitArm64::ps_arith(UGeckoInstruction inst)
|
||||||
result_reg = reg_encoder(V1Q);
|
result_reg = reg_encoder(V1Q);
|
||||||
}
|
}
|
||||||
|
|
||||||
const ARM64Reg temp_gpr = m_accurate_nans && !singles ? gpr.GetReg() : ARM64Reg::INVALID_REG;
|
|
||||||
|
|
||||||
if (m_accurate_nans)
|
if (m_accurate_nans)
|
||||||
{
|
{
|
||||||
if (V0Q == ARM64Reg::INVALID_REG)
|
if (V0Q == ARM64Reg::INVALID_REG)
|
||||||
|
@ -304,8 +302,6 @@ void JitArm64::ps_arith(UGeckoInstruction inst)
|
||||||
fpr.Unlock(V1Q);
|
fpr.Unlock(V1Q);
|
||||||
if (V2Q != ARM64Reg::INVALID_REG)
|
if (V2Q != ARM64Reg::INVALID_REG)
|
||||||
fpr.Unlock(V2Q);
|
fpr.Unlock(V2Q);
|
||||||
if (temp_gpr != ARM64Reg::INVALID_REG)
|
|
||||||
gpr.Unlock(temp_gpr);
|
|
||||||
|
|
||||||
ASSERT_MSG(DYNA_REC, singles == singles_func(),
|
ASSERT_MSG(DYNA_REC, singles == singles_func(),
|
||||||
"Register allocation turned singles into doubles in the middle of ps_arith");
|
"Register allocation turned singles into doubles in the middle of ps_arith");
|
||||||
|
|
Loading…
Add table
Reference in a new issue