TrampolineCache: Remove unnecessary cast

This commit is contained in:
Lioncash 2014-10-03 20:46:44 -04:00
parent ed7f0739ae
commit eb1ddb886e
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ const u8 *TrampolineCache::GetReadTrampoline(const InstructionInfo &info, u32 re
ABI_PushRegistersAndAdjustStack(registersInUse, 8);
if (addrReg != ABI_PARAM1)
MOV(32, R(ABI_PARAM1), R((X64Reg)addrReg));
MOV(32, R(ABI_PARAM1), R(addrReg));
if (info.displacement)
ADD(32, R(ABI_PARAM1), Imm32(info.displacement));