mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
JIT: Fix redundant MOVs in x86 trampolines
Fixes spammy log messages about redundant MOVs.
This commit is contained in:
parent
9b2909357b
commit
3b7d7da1ac
1 changed files with 2 additions and 1 deletions
|
@ -86,6 +86,7 @@ const u8* TrampolineCache::GenerateReadTrampoline(const InstructionInfo &info, B
|
|||
break;
|
||||
}
|
||||
|
||||
if (dataReg != ABI_RETURN)
|
||||
MOV(dataRegSize, R(dataReg), R(ABI_RETURN));
|
||||
|
||||
ABI_PopRegistersAndAdjustStack(registersInUse, 8);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue