From 6d4f81200ded9e9889b1a1b1320eb43b58c6ec34 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Mon, 24 Nov 2025 01:21:30 +0200 Subject: [PATCH] arm64 JIT: Undo broken fix --- src/core/PICA/dynapica/shader_rec_emitter_arm64.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/PICA/dynapica/shader_rec_emitter_arm64.cpp b/src/core/PICA/dynapica/shader_rec_emitter_arm64.cpp index 6d08b542..296ec932 100644 --- a/src/core/PICA/dynapica/shader_rec_emitter_arm64.cpp +++ b/src/core/PICA/dynapica/shader_rec_emitter_arm64.cpp @@ -123,8 +123,6 @@ void ShaderEmitter::compileInstruction(const PICAShader& shaderUnit) { MOV(W1, recompilerPC); // W1 = Current PC CMP(W0, W1); // If they're equal, execute a RET, otherwise skip it B(NE, skipReturn); - - LDP(XZR, X30, SP, POST_INDEXED, 16); RET(); l(skipReturn);