1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

SPU LLVM: Disable PUTLLC16 optimization on accurate RSX reservations

This commit is contained in:
Elad Ashkenazi 2024-05-23 18:46:37 +03:00
parent d3ab62c4b1
commit e94928318e

View File

@ -6698,6 +6698,12 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
continue;
}
if (g_cfg.core.rsx_accurate_res_access)
{
// For now it is skipped completely in this case
continue;
}
union putllc16_info
{
u32 data;