diff options
author | Andrew Bardsley <Andrew.Bardsley@arm.com> | 2014-12-02 06:08:13 -0500 |
---|---|---|
committer | Andrew Bardsley <Andrew.Bardsley@arm.com> | 2014-12-02 06:08:13 -0500 |
commit | 98f3e7a3108dc41daae3e9c8ef448cf948b840b1 (patch) | |
tree | bd72906c5887417cec8b716e35b48b51714b7785 /src | |
parent | 3cd0b1f6a6873ef06351dd49f3c7697175303371 (diff) | |
download | gem5-98f3e7a3108dc41daae3e9c8ef448cf948b840b1.tar.xz |
cpu: Fix memoryIssueLimit checking in Minor
This patch fixes the checking of the number of memory instructions issued
per cycles in the Minor CPU.
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/minor/execute.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/minor/execute.cc b/src/cpu/minor/execute.cc index 69cb9a239..f7b773377 100644 --- a/src/cpu/minor/execute.cc +++ b/src/cpu/minor/execute.cc @@ -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); |