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>
This commit is contained in:
parent
153e5879c6
commit
f3643c8a60
1 changed files with 1 additions and 1 deletions
2
src/mem/cache/cache.cc
vendored
2
src/mem/cache/cache.cc
vendored
|
@ -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());
|
||||
|
||||
|
|
Loading…
Reference in a new issue