diff --git a/src/V3Const.cpp b/src/V3Const.cpp index e2486101b..203fef45a 100644 --- a/src/V3Const.cpp +++ b/src/V3Const.cpp @@ -1419,7 +1419,6 @@ class ConstVisitor final : public VNVisitor { bool matchMaskedZero(const AstAnd* nodep) { // Turn masking of known zero bits into constant zero. Commonly appears after V3Expand. - // Mask at this point should be non-zero otherwise earlier pattern should have matched. const AstConst* const maskp = VN_AS(nodep->lhsp(), Const); const AstNodeExpr* const rhsp = nodep->rhsp(); const uint32_t msbP1 = maskp->num().mostSetBitP1();