mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-05 06:35:04 -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:
|
default:
|
||||||
{
|
{
|
||||||
|
if (type & spu_itype::zregmod)
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Unconst
|
// Unconst
|
||||||
const u32 op_rt = type & spu_itype::_quadrop ? +op.rt4 : +op.rt;
|
const u32 op_rt = type & spu_itype::_quadrop ? +op.rt4 : +op.rt;
|
||||||
m_regmod[pos / 4] = op_rt;
|
m_regmod[pos / 4] = op_rt;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user