summaryrefslogtreecommitdiff
path: root/src/mem/cache
diff options
context:
space:
mode:
authorBjoern A. Zeeb <baz21@cam.ac.uk>2017-02-11 11:11:48 -0500
committerBjoern A. Zeeb <baz21@cam.ac.uk>2017-02-11 11:11:48 -0500
commitf3643c8a60571604466bc78cc404fbfec704a1cf (patch)
tree11d14e23c2078be6052df4e41356fbc23829b846 /src/mem/cache
parent153e5879c606c5d42ad9f2059488f67d8685a5d1 (diff)
downloadgem5-f3643c8a60571604466bc78cc404fbfec704a1cf.tar.xz
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 <jason@lowepower.com>
Diffstat (limited to 'src/mem/cache')
-rw-r--r--src/mem/cache/cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/cache.cc b/src/mem/cache/cache.cc
index 9079606cf..b4d583eb8 100644
--- a/src/mem/cache/cache.cc
+++ b/src/mem/cache/cache.cc
@@ -585,7 +585,7 @@ Cache::promoteWholeLineWrites(PacketPtr pkt)
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());