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:
Andrew Bardsley 2014-12-02 06:08:13 -05:00
parent 3cd0b1f6a6
commit 98f3e7a310

View file

@ -671,7 +671,7 @@ Execute::issue(bool only_issue_microops)
timing->extraAssumedLat;
}
bool issued_mem_ref = inst->isMemRef();
issued_mem_ref = inst->isMemRef();
QueuedInst fu_inst(inst);