Fix formatting and comments in cache_impl.hh
--HG-- extra : convert_revision : 26d71cca5420ad03e16bf174e15dabe7f902da41
This commit is contained in:
4
src/mem/cache/cache_impl.hh
vendored
4
src/mem/cache/cache_impl.hh
vendored
@@ -919,7 +919,7 @@ Cache<TagStore>::doTimingSupplyResponse(PacketPtr req_pkt,
|
||||
PacketPtr pkt = already_copied ? req_pkt : new Packet(req_pkt, true);
|
||||
if (!req_pkt->isInvalidate()) {
|
||||
// note that we're ignoring the shared flag on req_pkt... it's
|
||||
// basically irrelveant, as we'll always assert shared unless
|
||||
// basically irrelevant, as we'll always assert shared unless
|
||||
// it's an exclusive request, in which case the shared line
|
||||
// should never be asserted1
|
||||
pkt->assertShared();
|
||||
@@ -1056,7 +1056,7 @@ Cache<TagStore>::snoopTiming(PacketPtr pkt)
|
||||
pkt->getAddr());
|
||||
|
||||
//Look through writebacks for any non-uncachable writes, use that
|
||||
for (int i=0; i<writebacks.size(); i++) {
|
||||
for (int i = 0; i < writebacks.size(); i++) {
|
||||
mshr = writebacks[i];
|
||||
assert(!mshr->isUncacheable());
|
||||
assert(mshr->getNumTargets() == 1);
|
||||
|
||||
Reference in New Issue
Block a user