This commit is contained in:
Jean-Philip Desjardins 2017-01-06 23:23:27 -05:00
parent cb828b45a7
commit cdf153ebb0

View File

@ -55,8 +55,8 @@ void CVuBasicBlock::CompileRange(CMipsJitter* jitter)
uint32 opcodeLo = m_context.m_pMemoryMap->GetInstruction(addressLo);
uint32 opcodeHi = m_context.m_pMemoryMap->GetInstruction(addressHi);
VUShared::OPERANDSET loOps = arch->GetAffectedOperands(&m_context, addressLo, opcodeLo);
VUShared::OPERANDSET hiOps = arch->GetAffectedOperands(&m_context, addressHi, opcodeHi);
auto loOps = arch->GetAffectedOperands(&m_context, addressLo, opcodeLo);
auto hiOps = arch->GetAffectedOperands(&m_context, addressHi, opcodeHi);
//No upper instruction writes to Q
assert(hiOps.syncQ == false);