CPU/NewRec/AArch32: Fix double condition

This commit is contained in:
Stenzek 2024-01-25 13:33:41 +10:00
parent ef9edb8f40
commit b545234152
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}