CPU/NewRec/AArch32: Fix double condition
This commit is contained in:
parent
ef9edb8f40
commit
b545234152
|
@ -81,8 +81,8 @@ void CPU::NewRec::AArch32Compiler::Reset(CodeCache::Block* block, u8* code_buffe
|
|||
{
|
||||
HostRegAlloc& ra = m_host_regs[i];
|
||||
|
||||
if (i == RARG1.GetCode() || i == RARG1.GetCode() || i == RARG2.GetCode() || i == RARG3.GetCode() ||
|
||||
i == RSCRATCH.GetCode() || i == RSTATE.GetCode() || i == membase_idx || i == sp.GetCode() || i == pc.GetCode())
|
||||
if (i == RARG1.GetCode() || i == RARG2.GetCode() || i == RARG3.GetCode() || i == RSCRATCH.GetCode() ||
|
||||
i == RSTATE.GetCode() || i == membase_idx || i == sp.GetCode() || i == pc.GetCode())
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue