1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Flipped order of conditional so as negligibly to improve prediction.

This commit is contained in:
Thomas Harte 2016-10-31 22:17:18 -04:00
parent 08e8118be3
commit 7ad44f5152

View File

@ -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;
}