mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-27 22:02:25 -06:00
SPU Analyzer: Fix analysis of instructions without regmod
This commit is contained in:
parent
35ccd63dbc
commit
1ec3de9e8f
@ -3603,6 +3603,11 @@ spu_program spu_recompiler_base::analyse(const be_t<u32>* ls, u32 entry_point, s
|
||||
|
||||
default:
|
||||
{
|
||||
if (type & spu_itype::zregmod)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
// Unconst
|
||||
const u32 op_rt = type & spu_itype::_quadrop ? +op.rt4 : +op.rt;
|
||||
m_regmod[pos / 4] = op_rt;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user