From 9bd8b7913886387abd5ce8ea2975e7483f6432de Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Mon, 22 Jun 2026 17:49:05 +0100 Subject: [PATCH] Remove stray comment --- src/V3Const.cpp | 1 - 1 file changed, 1 deletion(-) 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();