style: eliminate equality tests with true and false
[gem5.git] / src / cpu / o3 / fetch_impl.hh
index a81125da6c580f7ed96bb70ec0db208dd34925da..93dc2e25098ec04ae52343e4f9a00b3ce1e8f2ac 100644 (file)
@@ -430,8 +430,8 @@ DefaultFetch<Impl>::drainSanityCheck() const
     assert(isDrained());
     assert(retryPkt == NULL);
     assert(retryTid == InvalidThreadID);
-    assert(cacheBlocked == false);
-    assert(interruptPending == false);
+    assert(!cacheBlocked);
+    assert(!interruptPending);
 
     for (ThreadID i = 0; i < numThreads; ++i) {
         assert(!memReq[i]);