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