mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
[AArch64] Remove an extraneous nop in 8bit fastmem stores.
This commit is contained in:
@ -180,10 +180,7 @@ u32 JitArm64::EmitBackpatchRoutine(ARM64XEmitter* emit, u32 flags, bool fastmem,
|
|||||||
else if (flags & BackPatchInfo::FLAG_SIZE_16)
|
else if (flags & BackPatchInfo::FLAG_SIZE_16)
|
||||||
emit->STRH(INDEX_UNSIGNED, temp, addr, 0);
|
emit->STRH(INDEX_UNSIGNED, temp, addr, 0);
|
||||||
else
|
else
|
||||||
{
|
|
||||||
emit->STRB(INDEX_UNSIGNED, RS, addr, 0);
|
emit->STRB(INDEX_UNSIGNED, RS, addr, 0);
|
||||||
emit->HINT(HINT_NOP);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user