Jit: Move dcbx ENABLE_IF

INSTRUCTION_START is supposed to be before anything else in the
function. The difference only matters if INSTRUCTION_START gets
redefined, though.
This commit is contained in:
JosJuice
2026-04-02 11:13:52 +02:00
parent 904ed4b785
commit f7b9c1f034
2 changed files with 2 additions and 4 deletions

View File

@@ -234,10 +234,9 @@ void Jit64::lXXx(UGeckoInstruction inst)
void Jit64::dcbx(UGeckoInstruction inst)
{
FALLBACK_IF(m_accurate_cpu_cache_enabled);
INSTRUCTION_START
JITDISABLE(bJITLoadStoreOff);
FALLBACK_IF(m_accurate_cpu_cache_enabled);
// Check if the next instructions match a known looping pattern:
// - dcbx rX

View File

@@ -757,10 +757,9 @@ void JitArm64::stmw(UGeckoInstruction inst)
void JitArm64::dcbx(UGeckoInstruction inst)
{
FALLBACK_IF(m_accurate_cpu_cache_enabled);
INSTRUCTION_START
JITDISABLE(bJITLoadStoreOff);
FALLBACK_IF(m_accurate_cpu_cache_enabled);
u32 a = inst.RA, b = inst.RB;