From f3643c8a60571604466bc78cc404fbfec704a1cf Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Sat, 11 Feb 2017 11:11:48 -0500 Subject: [PATCH] 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 --- src/mem/cache/cache.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());