1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 20:22:30 +01:00

SPU Analyzer: forgive invalid code, use interpreter

This commit is contained in:
Eladash 2024-02-16 09:05:52 +02:00 committed by Elad.Ash
parent f943deb2c3
commit 36ab866c2c

View File

@ -3569,6 +3569,13 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
}
}
if (!m_bbs.count(entry_point))
{
// Invalid code
spu_log.error("[0x%x] Invalid code", entry_point);
return {};
}
// Fill entry map
while (true)
{