summaryrefslogtreecommitdiff
path: root/src/mem
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-11-28 11:41:08 -0500
committerKevin Lim <ktlim@umich.edu>2006-11-28 11:41:08 -0500
commit2b5fdf603399c63a9344206f1593b20fcb834013 (patch)
treeb04175ff5f3beee931aa750b6c2d5f4999d6dd4e /src/mem
parent07e525e8b78fba0ebaf5c50f32fbf30d17051891 (diff)
downloadgem5-2b5fdf603399c63a9344206f1593b20fcb834013.tar.xz
Remove assertion. It's not needed and messes up writebacks when a 2 level cache is used in a uniprocessor setting.
--HG-- extra : convert_revision : 020a9799cd7177fdb85a767701d6fcb8cf018827
Diffstat (limited to 'src/mem')
-rw-r--r--src/mem/cache/coherence/uni_coherence.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mem/cache/coherence/uni_coherence.cc b/src/mem/cache/coherence/uni_coherence.cc
index 5813a0281..ea615d70a 100644
--- a/src/mem/cache/coherence/uni_coherence.cc
+++ b/src/mem/cache/coherence/uni_coherence.cc
@@ -94,10 +94,6 @@ UniCoherence::handleBusRequest(PacketPtr &pkt, CacheBlk *blk, MSHR *mshr,
bool
UniCoherence::propogateInvalidate(PacketPtr pkt, bool isTiming)
{
- //Make sure we don't snoop a write
- //we are expecting writeInvalidates on the snoop port of a uni-coherent cache
- assert(!(!pkt->isInvalidate() && pkt->isWrite()));
-
if (pkt->isInvalidate()) {
/* Temp Fix for now, forward all invalidates up as functional accesses */
if (isTiming) {