[AArch64] Don't do an unnecessary 128bit REV64 operation.

We are only using the lower 64bits here, no need to do the full quad register.
This commit is contained in:
Ryan Houdek 2015-08-09 14:56:52 -05:00
parent 922d476dab
commit cf22d32d0c

View File

@ -169,7 +169,7 @@ u32 JitArm64::EmitBackpatchRoutine(ARM64XEmitter* emit, u32 flags, bool fastmem,
else
{
float_emit.LDR(64, INDEX_UNSIGNED, Q0, addr, 0);
float_emit.REV64(8, Q0, Q0);
float_emit.REV64(8, D0, D0);
float_emit.INS(64, RS, 0, Q0, 0);
}
}