CPU/CodeCache: Don't choke on indirect -> direct branch in delay slot

This commit is contained in:
Connor McLaughlin
2021-03-06 01:33:12 +10:00
parent 56b522a902
commit bf5f53e1d1
2 changed files with 5 additions and 5 deletions

View File

@ -52,6 +52,7 @@ struct CodeBlockInstruction
u32 pc;
bool is_branch_instruction : 1;
bool is_direct_branch_instruction : 1;
bool is_unconditional_branch_instruction : 1;
bool is_branch_delay_slot : 1;
bool is_load_instruction : 1;