1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-21 18:22:33 +01:00

Update SPULLVMRecompiler.cpp

This commit is contained in:
Elad Ashkenazi 2024-09-02 12:48:14 +03:00 committed by Elad
parent fa3eb2454f
commit b164a5830f

View File

@ -1890,6 +1890,12 @@ public:
// Initialize registers and build PHI nodes if necessary
for (u32 i = 0; i < s_reg_max; i++)
{
if (bb.reg_const[i])
{
m_block->reg[i] = make_const_vector(v128::from32p(bb.reg_val32[i]), get_type<u32[4]>());
continue;
}
const u32 src = m_finfo->fn ? bb.reg_origin_abs[i] : bb.reg_origin[i];
if (src > 0x40000)