mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-26 15:32:04 +00:00
Flipped order of conditional so as negligibly to improve prediction.
This commit is contained in:
parent
08e8118be3
commit
7ad44f5152
@ -1109,7 +1109,7 @@ template <class T> class Processor {
|
||||
continue;
|
||||
}
|
||||
|
||||
if(isReadOperation(nextBusOperation) && _ready_line_is_enabled) {
|
||||
if(_ready_line_is_enabled && isReadOperation(nextBusOperation)) {
|
||||
_ready_is_active = true;
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user