changeset 79c3f6a60392 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=79c3f6a60392
description:
mem: fix printing of 1st cache tags line
Rather than having the 1st line on the Log line and every other line on
its
own, add a new line to have a common format for all of them. Makes
parsing
a lot easier.
Reviewed at http://reviews.gem5.org/r/3808/
Signed-off-by: Jason Lowe-Power <[email protected]>
diffstat:
src/mem/cache/cache.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r cb5390385d87 -r 79c3f6a60392 src/mem/cache/cache.cc
--- a/src/mem/cache/cache.cc Fri Feb 10 11:19:34 2017 -0500
+++ b/src/mem/cache/cache.cc Sat Feb 11 11:11:48 2017 -0500
@@ -585,7 +585,7 @@
bool
Cache::recvTimingReq(PacketPtr pkt)
{
- DPRINTF(CacheTags, "%s tags: %s\n", __func__, tags->print());
+ DPRINTF(CacheTags, "%s tags:\n%s\n", __func__, tags->print());
assert(pkt->isRequest());
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev