diff options
-rw-r--r-- | src/mem/cache/mshr.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/cache/mshr.cc b/src/mem/cache/mshr.cc index 2dd23440a..e3282f9b8 100644 --- a/src/mem/cache/mshr.cc +++ b/src/mem/cache/mshr.cc @@ -351,8 +351,7 @@ MSHR::handleSnoop(PacketPtr pkt, Counter _order) // snoop writes as they are currently not marked as invalidations panic_if(pkt->needsWritable() != pkt->isInvalidate(), "%s got snoop %s where needsWritable, " - "does not match isInvalidate", name(), pkt->print(), - pkt->getAddr()); + "does not match isInvalidate", name(), pkt->print()); if (!inService || (pkt->isExpressSnoop() && downstreamPending)) { // Request has not been issued yet, or it's been issued |