Fix a bitwise operation that was accidentally a logical operation.

--HG--
extra : convert_revision : 30f64bcb6bea47fd8cd6d77b0df17eff04dbbad0
This commit is contained in:
Ron Dreslinski 2006-10-09 17:18:34 -04:00
parent b9fb4d4870
commit fd27c229b6

View file

@ -73,7 +73,7 @@ doTimingAccess(Packet *pkt, CachePort *cachePort, bool isCpuSide)
handleResponse(pkt);
else {
//Check if we should do the snoop
if (pkt->flags && SNOOP_COMMIT)
if (pkt->flags & SNOOP_COMMIT)
snoop(pkt);
}
}