CPU/Recompiler: Remove unused variable
This commit is contained in:
parent
e2850b5a6c
commit
bdc47319dc
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue