From 5617d0862056487a7ccc17f04499aa4a92050a10 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Thu, 7 Sep 2023 17:26:30 -0700 Subject: [PATCH] arm64jit: Remove unused variable. --- Common/Arm64Emitter.cpp | 2 -- Core/MIPS/ARM64/Arm64IRCompFPU.cpp | 1 - 2 files changed, 3 deletions(-) diff --git a/Common/Arm64Emitter.cpp b/Common/Arm64Emitter.cpp index a97c88ed84..4f66b9b129 100644 --- a/Common/Arm64Emitter.cpp +++ b/Common/Arm64Emitter.cpp @@ -4115,8 +4115,6 @@ void ARM64FloatEmitter::MOVI2F(ARM64Reg Rd, float value, ARM64Reg scratch, bool // TODO: Quite a few values could be generated easily using the MOVI instruction and friends. void ARM64FloatEmitter::MOVI2FDUP(ARM64Reg Rd, float value, ARM64Reg scratch, bool negate) { _assert_msg_(!IsSingle(Rd), "%s doesn't support singles", __FUNCTION__); - // TODO: Make it work with more element sizes - ARM64Reg s = (ARM64Reg)(S0 + DecodeReg(Rd)); int ival; memcpy(&ival, &value, 4); uint8_t imm8; diff --git a/Core/MIPS/ARM64/Arm64IRCompFPU.cpp b/Core/MIPS/ARM64/Arm64IRCompFPU.cpp index 24f14763c0..de4cee7f51 100644 --- a/Core/MIPS/ARM64/Arm64IRCompFPU.cpp +++ b/Core/MIPS/ARM64/Arm64IRCompFPU.cpp @@ -285,7 +285,6 @@ void Arm64JitBackend::CompIR_FCompare(IRInst inst) { // Less than Infinity, but not NAN. CSET(SCRATCH1, CC_LO); break; - break; case VC_TR: MOVI2R(SCRATCH1, 1); break;