From 4982f63da22578cb0ce5aec95e470ef477ba1fd5 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 30 Apr 2024 19:34:41 -0400 Subject: [PATCH] Update coverage for last commit --- src/V3Width.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/V3Width.cpp b/src/V3Width.cpp index fb6c52257..77086cf0e 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -920,8 +920,10 @@ class WidthVisitor final : public VNVisitor { } UASSERT_OBJ(nodep->dtypep(), nodep, "dtype wasn't set"); // by V3WidthSel if (VN_IS(nodep->lsbp(), Const) && nodep->msbConst() < nodep->lsbConst()) { - nodep->v3warn(E_UNSUPPORTED, "Unsupported: left < right of bit extract: " - << nodep->msbConst() << "<" << nodep->lsbConst()); + // Likely impossible given above width check + nodep->v3warn(E_UNSUPPORTED, + "Unsupported: left < right of bit extract: " // LCOV_EXCL_LINE + << nodep->msbConst() << "<" << nodep->lsbConst()); width = (nodep->lsbConst() - nodep->msbConst() + 1); nodep->dtypeSetLogicSized(width, VSigning::UNSIGNED); pushDeletep(nodep->widthp());