summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorSintendo <3380580+Sintendo@users.noreply.github.com>2024-06-30 09:54:09 +0200
committerSintendo <3380580+Sintendo@users.noreply.github.com>2024-06-30 09:54:09 +0200
commit9af7772d91d085ee4377143a67f87f63e99130e1 (patch)
treef8e9e41b38140d4c061eca829ad82953464ac3bd /Source
parent0e58b3cfb7d8cf24fd42312951fe6cd705e62ffd (diff)
JitArm64_Paired: Remove unused temp_gpr from ps_arith
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp
index 398afc8d69..23a06e48ca 100644
--- a/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp
+++ b/Source/Core/Core/PowerPC/JitArm64/JitArm64_Paired.cpp
@@ -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");