diff options
author | Nikos Nikoleris <nikos.nikoleris@arm.com> | 2016-07-11 10:39:22 +0100 |
---|---|---|
committer | Nikos Nikoleris <nikos.nikoleris@arm.com> | 2016-07-11 10:39:22 +0100 |
commit | f4cc3a4d20865f5b80951ab800784f7ad54fc312 (patch) | |
tree | bcbfbf4d2a2c36e924ffe4855884d486f0391dbf /src | |
parent | 7c291677a842c16fe61296dcfa67556a20dda479 (diff) | |
download | gem5-f4cc3a4d20865f5b80951ab800784f7ad54fc312.tar.xz |
mem: Remove stale argument from a DPRINTF in the cache code
Change-Id: I70dd11c23b45dfc606ef08233d2e50fcc0817505
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mem/cache/cache.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/cache/cache.cc b/src/mem/cache/cache.cc index e6247823c..15c2b7a54 100644 --- a/src/mem/cache/cache.cc +++ b/src/mem/cache/cache.cc @@ -733,8 +733,7 @@ Cache::recvTimingReq(PacketPtr pkt) cpuSidePort->schedTimingResp(pkt, request_time, true); } else { DPRINTF(Cache, "%s satisfied %s addr %#llx, no response needed\n", - __func__, pkt->cmdString(), pkt->getAddr(), - pkt->getSize()); + __func__, pkt->cmdString(), pkt->getAddr()); // queue the packet for deletion, as the sending cache is // still relying on it; if the block is found in access(), |