mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-12-26 17:24:57 +01:00
A64: Optimization: Merge interpret blocks
This commit is contained in:
parent
99b7516c8c
commit
c6a091d874
9 changed files with 76 additions and 2 deletions
|
|
@ -90,6 +90,11 @@ void Block::SetTerminal(Terminal term) {
|
|||
terminal = term;
|
||||
}
|
||||
|
||||
void Block::ReplaceTerminal(Terminal term) {
|
||||
ASSERT_MSG(HasTerminal(), "Terminal has not been set.");
|
||||
terminal = term;
|
||||
}
|
||||
|
||||
bool Block::HasTerminal() const {
|
||||
return terminal.which() != 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue