diff options
author | Bjoern A. Zeeb <baz21@cam.ac.uk> | 2017-02-11 11:11:48 -0500 |
---|---|---|
committer | Bjoern A. Zeeb <baz21@cam.ac.uk> | 2017-02-11 11:11:48 -0500 |
commit | f3643c8a60571604466bc78cc404fbfec704a1cf (patch) | |
tree | 11d14e23c2078be6052df4e41356fbc23829b846 | |
parent | 153e5879c606c5d42ad9f2059488f67d8685a5d1 (diff) | |
download | gem5-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>
-rw-r--r-- | src/mem/cache/cache.cc | 2 |
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()); |