changeset 953d7b741619 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=953d7b741619
description:
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:
src/cpu/minor/execute.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r e622a3e2ed14 -r 953d7b741619 src/cpu/minor/execute.cc
--- a/src/cpu/minor/execute.cc Tue Dec 02 06:08:11 2014 -0500
+++ b/src/cpu/minor/execute.cc Tue Dec 02 06:08:13 2014 -0500
@@ -671,7 +671,7 @@
timing->extraAssumedLat;
}
- bool issued_mem_ref = inst->isMemRef();
+ issued_mem_ref = inst->isMemRef();
QueuedInst fu_inst(inst);
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev