diff --git a/src/core/libraries/gnmdriver/gnmdriver.cpp b/src/core/libraries/gnmdriver/gnmdriver.cpp index 00920711e..87fb9cac4 100644 --- a/src/core/libraries/gnmdriver/gnmdriver.cpp +++ b/src/core/libraries/gnmdriver/gnmdriver.cpp @@ -392,8 +392,7 @@ s32 PS4_SYSV_ABI sceGnmAddEqEvent(SceKernelEqueue eq, u64 id, void* udata) { ASSERT_MSG(irq == interruptId, "An unexpected IRQ occurred"); eq->TriggerEvent(eventId, SceKernelEvent::Filter::GraphicsCore, nullptr); }, - eq - ); + eq); return ORBIS_OK; } diff --git a/src/shader_recompiler/frontend/translate/vector_alu.cpp b/src/shader_recompiler/frontend/translate/vector_alu.cpp index a32c6248c..a1b75c52e 100644 --- a/src/shader_recompiler/frontend/translate/vector_alu.cpp +++ b/src/shader_recompiler/frontend/translate/vector_alu.cpp @@ -357,13 +357,7 @@ void Translator::V_CVT_PKNORM_U16_F32(const GcnInst& inst) { const IR::U32 src0 = Convert_F32_to_U16_Normalized(GetSrc(inst.src[0])); const IR::U32 src1 = Convert_F32_to_U16_Normalized(GetSrc(inst.src[1])); - ir.SetVectorReg( - dst_reg, - ir.BitwiseOr( - src0, - ir.ShiftLeftLogical(src1, ir.Imm32(16)) - ) - ); + ir.SetVectorReg(dst_reg, ir.BitwiseOr(src0, ir.ShiftLeftLogical(src1, ir.Imm32(16)))); } void Translator::V_CVT_F32_F16(const GcnInst& inst) {