SPU LLVM: don't save $2 in optimized functions
This commit is contained in:
@@ -3896,16 +3896,11 @@ class spu_llvm_recompiler : public spu_recompiler_base, public cpu_translator
|
|||||||
|
|
||||||
if (m_finfo && m_finfo->fn)
|
if (m_finfo && m_finfo->fn)
|
||||||
{
|
{
|
||||||
if (index == s_reg_lr || index == 3 || (index >= s_reg_80 && index <= s_reg_127))
|
if (index <= 3 || (index >= s_reg_80 && index <= s_reg_127))
|
||||||
{
|
{
|
||||||
// Don't save some registers in true functions
|
// Don't save some registers in true functions
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (index == s_reg_sp)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write register to the context
|
// Write register to the context
|
||||||
|
|||||||
Reference in New Issue
Block a user