Hi,
is it safe to convert assertions to "return" or "break".
I don't know why this assertion

assert(pkt->needsExclusive() && !blk->isWritable());

fails. So I want to changeit to this:

if (!pkt->needsExclusive() && blk->isWritable())
   break;

Any idea?
--
// Naderan *Mahmood;
_______________________________________________
gem5-users mailing list
[email protected]
http://m5sim.org/cgi-bin/mailman/listinfo/gem5-users

Reply via email to