From e2eebe566d8e4f4bf41bd88a38f448767314e34b Mon Sep 17 00:00:00 2001 From: zilmar Date: Thu, 18 May 2023 18:05:54 +0930 Subject: [PATCH] Core: fix up for clang --- .../N64System/Recompiler/x86/x86RecompilerOps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp b/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp index b13939aff..7fdcf83bf 100644 --- a/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp +++ b/Source/Project64-core/N64System/Recompiler/x86/x86RecompilerOps.cpp @@ -9474,7 +9474,7 @@ void CX86RecompilerOps::CompileExit(uint32_t JumpPC, uint32_t TargetPC, CRegInfo case ExitReason_DoSysCall: m_Assembler.MoveConstToVariable(&g_System->m_PipelineStage, "System->m_PipelineStage", m_PipelineStage == PIPELINE_STAGE_JUMP || m_PipelineStage == PIPELINE_STAGE_DELAY_SLOT ? PIPELINE_STAGE_JUMP : PIPELINE_STAGE_NORMAL); m_Assembler.push(0); - m_Assembler.PushImm32("EXC_SYSCALL", EXC_SYSCALL); + m_Assembler.PushImm32("EXC_SYSCALL", EXC_SYSCALL); m_Assembler.CallThis((uint32_t)g_Reg, AddressOf(&CRegisters::TriggerException), "CRegisters::TriggerException", 12); ExitCodeBlock(); break;