mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
JIT: Fix redundant MOVs in x86 trampolines
Fixes spammy log messages about redundant MOVs.
This commit is contained in:
@ -86,6 +86,7 @@ const u8* TrampolineCache::GenerateReadTrampoline(const InstructionInfo &info, B
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (dataReg != ABI_RETURN)
|
||||||
MOV(dataRegSize, R(dataReg), R(ABI_RETURN));
|
MOV(dataRegSize, R(dataReg), R(ABI_RETURN));
|
||||||
|
|
||||||
ABI_PopRegistersAndAdjustStack(registersInUse, 8);
|
ABI_PopRegistersAndAdjustStack(registersInUse, 8);
|
||||||
|
Reference in New Issue
Block a user