diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2010-08-26 08:03:20 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2010-08-26 08:03:20 -0700 |
commit | 3ffc4505f7dde4966391c49aa9138bb475cf25cb (patch) | |
tree | 647a0656d752a5b477c8e8f715d65ac937c4a589 /src/mem/cache | |
parent | 1bf944be6213163279e114412a7f3cc804b5846a (diff) | |
download | gem5-3ffc4505f7dde4966391c49aa9138bb475cf25cb.tar.xz |
mem: fix m5.fast compile bug in previous cset
Diffstat (limited to 'src/mem/cache')
-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 c930a886d..9e3374fea 100644 --- a/src/mem/cache/cache_impl.hh +++ b/src/mem/cache/cache_impl.hh @@ -1103,7 +1103,7 @@ Cache<TagStore>::handleSnoop(PacketPtr pkt, BlkType *blk, // responds in atomic mode, so remember a few things about the // original packet up front bool invalidate = pkt->isInvalidate(); - bool needs_exclusive = pkt->needsExclusive(); + bool M5_VAR_USED needs_exclusive = pkt->needsExclusive(); if (forwardSnoops) { // first propagate snoop upward to see if anyone above us wants to |