CPU/Recompiler: Remove unused variable

This commit is contained in:
Connor McLaughlin 2019-11-23 00:45:46 +10:00
parent e2850b5a6c
commit bdc47319dc
2 changed files with 0 additions and 6 deletions

View File

@ -169,10 +169,6 @@ bool CodeGenerator::CompileInstruction(const CodeBlockInstruction& cbi)
break;
}
// release temporary effective addresses
for (Value& value : m_operand_memory_addresses)
value.ReleaseAndClear();
return result;
}

View File

@ -198,8 +198,6 @@ private:
u32 m_delayed_pc_add = 0;
TickCount m_delayed_cycles_add = 0;
std::array<Value, 3> m_operand_memory_addresses{};
// whether various flags need to be reset.
bool m_current_instruction_in_branch_delay_slot_dirty = false;
bool m_branch_was_taken_dirty = false;