mirror of
https://github.com/azahar-emu/dynarmic.git
synced 2026-04-07 13:57:12 +02:00
A64: Optimization: Merge interpret blocks
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user