arm64jit: Remove unused variable.

This commit is contained in:
Unknown W. Brackets 2023-09-07 17:26:30 -07:00
parent 03f22beefd
commit 5617d08620
2 changed files with 0 additions and 3 deletions

View file

@ -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;

View file

@ -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;