diff options
author | Nikos Nikoleris <nikos.nikoleris@arm.com> | 2017-02-21 14:14:44 +0000 |
---|---|---|
committer | Nikos Nikoleris <nikos.nikoleris@arm.com> | 2017-02-21 14:14:44 +0000 |
commit | 8fe8836eeab153210ed0f3f650f750b7daa7da34 (patch) | |
tree | 7614440687d4e1734e937e2dd5995ae238ac6406 /src/mem/cache | |
parent | 3c005c0f0ee4b1cc41113218724b9f0885b053d3 (diff) | |
download | gem5-8fe8836eeab153210ed0f3f650f750b7daa7da34.tar.xz |
mem: Remove stale argument from a panic statement
Change-Id: I7ae5fa44a937f641a2ddd242a49e0cd23f68b9f2
Reviewed-by: Sudhanshu Jha <sudhanshu.jha@arm.com>
Reviewed-by: Curtis Dunham <curtis.dunham@arm.com>
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/mem/cache')
-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 |