From c2b275ddbcbc6aa311c217abf7a1c68960e2ae67 Mon Sep 17 00:00:00 2001 From: Ani Date: Wed, 21 Aug 2024 18:28:03 +0100 Subject: [PATCH] spu: Workaround GCC 14.1 compiler bug Stumbled upon this issue with gcc 14.1.1+r1+g43b730b9134-1 on aarch64, failing compilation due to implicit fallthrough warnings being treated as errors --- rpcs3/Emu/Cell/SPULLVMRecompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp b/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp index dac139ef85..84d63faeac 100644 --- a/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp +++ b/rpcs3/Emu/Cell/SPULLVMRecompiler.cpp @@ -3824,8 +3824,8 @@ public: m_ir->CreateStore(stat_val, stat_ptr); m_ir->CreateBr(next); m_ir->SetInsertPoint(next); - return; } + return; } case MFC_LSA: {