diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-10-19 20:18:17 -0400 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-10-19 20:18:17 -0400 |
commit | 210e73f2a298d494e4b15a3bf0523e58369c00d2 (patch) | |
tree | 90c5e6e4b2131d5f7d5b62012250201f1163b6d6 /src/mem/cache/cache_impl.hh | |
parent | e34e564f79a9c471a3ff911b8faf7a761a59d8de (diff) | |
download | gem5-210e73f2a298d494e4b15a3bf0523e58369c00d2.tar.xz |
Small changes:
?? doesn't compile in warn statements
Should have been false, where I had a true.
src/cpu/o3/lsq_impl.hh:
Apparently you can't have ?? in a warn statement (Something about trigraphs)
src/mem/cache/cache_impl.hh:
Forgot to signal atomic mode in snoopProbe
--HG--
extra : convert_revision : c75cb76e193e852284564993440c8ea39e6de426
Diffstat (limited to 'src/mem/cache/cache_impl.hh')
-rw-r--r-- | src/mem/cache/cache_impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/cache_impl.hh b/src/mem/cache/cache_impl.hh index 18f56b1ba..c4acc03e7 100644 --- a/src/mem/cache/cache_impl.hh +++ b/src/mem/cache/cache_impl.hh @@ -720,7 +720,7 @@ Tick Cache<TagStore,Buffering,Coherence>::snoopProbe(PacketPtr &pkt) { //Send a atomic (false) invalidate up if the protocol calls for it - coherence->propogateInvalidate(pkt, true); + coherence->propogateInvalidate(pkt, false); Addr blk_addr = pkt->getAddr() & ~(Addr(blkSize-1)); BlkType *blk = tags->findBlock(pkt); |