mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Merge pull request #1753 from FioraAeterna/fixredundantmov
JIT: Fix redundant MOVs in x86 trampolines
This commit is contained in:
@ -86,7 +86,8 @@ const u8* TrampolineCache::GenerateReadTrampoline(const InstructionInfo &info, B
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
MOV(dataRegSize, R(dataReg), R(ABI_RETURN));
|
if (dataReg != ABI_RETURN)
|
||||||
|
MOV(dataRegSize, R(dataReg), R(ABI_RETURN));
|
||||||
|
|
||||||
ABI_PopRegistersAndAdjustStack(registersInUse, 8);
|
ABI_PopRegistersAndAdjustStack(registersInUse, 8);
|
||||||
RET();
|
RET();
|
||||||
|
Reference in New Issue
Block a user