cpu: Fix memoryIssueLimit checking in Minor
This patch fixes the checking of the number of memory instructions issued per cycles in the Minor CPU.
This commit is contained in:
parent
3cd0b1f6a6
commit
98f3e7a310
1 changed files with 1 additions and 1 deletions
|
@ -671,7 +671,7 @@ Execute::issue(bool only_issue_microops)
|
||||||
timing->extraAssumedLat;
|
timing->extraAssumedLat;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool issued_mem_ref = inst->isMemRef();
|
issued_mem_ref = inst->isMemRef();
|
||||||
|
|
||||||
QueuedInst fu_inst(inst);
|
QueuedInst fu_inst(inst);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue