mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
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
This commit is contained in:
parent
fc85c1a0c1
commit
c2b275ddbc
1 changed files with 1 additions and 1 deletions
|
@ -3824,8 +3824,8 @@ public:
|
||||||
m_ir->CreateStore(stat_val, stat_ptr);
|
m_ir->CreateStore(stat_val, stat_ptr);
|
||||||
m_ir->CreateBr(next);
|
m_ir->CreateBr(next);
|
||||||
m_ir->SetInsertPoint(next);
|
m_ir->SetInsertPoint(next);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
case MFC_LSA:
|
case MFC_LSA:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue