JitArm64: Use 64-bit register for pointer when falling back to interpreter.

This commit is contained in:
Admiral H. Curtiss 2023-03-21 02:46:29 +01:00
parent 744e14b470
commit 8f16fd60dd
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ void JitArm64::FallBackToInterpreter(UGeckoInstruction inst)
Interpreter::Instruction instr = Interpreter::GetInterpreterOp(inst);
MOVP2R(ARM64Reg::X8, instr);
MOVP2R(ARM64Reg::W0, &Core::System::GetInstance().GetInterpreter());
MOVP2R(ARM64Reg::X0, &Core::System::GetInstance().GetInterpreter());
MOVI2R(ARM64Reg::W1, inst.hex);
BLR(ARM64Reg::X8);