Core: CX86RecompilerOps::SPECIAL_NOR Ignore write to r0
This commit is contained in:
parent
95015302d6
commit
1f3ef6d505
|
@ -6069,6 +6069,11 @@ void CX86RecompilerOps::SPECIAL_XOR()
|
|||
|
||||
void CX86RecompilerOps::SPECIAL_NOR()
|
||||
{
|
||||
if (m_Opcode.rd == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_RegWorkingSet.IsKnown(m_Opcode.rt) && m_RegWorkingSet.IsKnown(m_Opcode.rs))
|
||||
{
|
||||
if (m_RegWorkingSet.IsConst(m_Opcode.rt) && m_RegWorkingSet.IsConst(m_Opcode.rs))
|
||||
|
|
Loading…
Reference in New Issue