mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
arm64jit: Remove unused variable.
This commit is contained in:
parent
03f22beefd
commit
5617d08620
2 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue