Fix a bitwise operation that was accidentally a logical operation.
--HG-- extra : convert_revision : 30f64bcb6bea47fd8cd6d77b0df17eff04dbbad0
This commit is contained in:
parent
b9fb4d4870
commit
fd27c229b6
1 changed files with 1 additions and 1 deletions
2
src/mem/cache/cache_impl.hh
vendored
2
src/mem/cache/cache_impl.hh
vendored
|
@ -73,7 +73,7 @@ doTimingAccess(Packet *pkt, CachePort *cachePort, bool isCpuSide)
|
||||||
handleResponse(pkt);
|
handleResponse(pkt);
|
||||||
else {
|
else {
|
||||||
//Check if we should do the snoop
|
//Check if we should do the snoop
|
||||||
if (pkt->flags && SNOOP_COMMIT)
|
if (pkt->flags & SNOOP_COMMIT)
|
||||||
snoop(pkt);
|
snoop(pkt);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue