diff --git a/src/V3Covergroup.cpp b/src/V3Covergroup.cpp index 27b2f85c3..5a80c0cbb 100644 --- a/src/V3Covergroup.cpp +++ b/src/V3Covergroup.cpp @@ -1344,8 +1344,8 @@ class FunctionalCoverageVisitor final : public VNVisitor { if (!foundCpp) { // Name not found as an explicit coverpoint — it's likely a direct variable // reference (implicit coverpoint). Silently ignore; cross is dropped. - UINFO(4, " Ignoring cross with implicit variable reference: " - << refp->name() << endl); + UINFO(4, " Ignoring cross with implicit variable reference: " << refp->name() + << endl); return; } diff --git a/src/V3EmitV.cpp b/src/V3EmitV.cpp index 5e7eccb70..a93432e1a 100644 --- a/src/V3EmitV.cpp +++ b/src/V3EmitV.cpp @@ -1020,7 +1020,8 @@ class EmitVBaseVisitorConst VL_NOT_FINAL : public VNVisitorConst { } } void visit(AstClassRefDType* nodep) override { - putfs(nodep, nodep->classp() ? EmitCUtil::prefixNameProtect(nodep->classp()) : nodep->prettyDTypeName(false)); + putfs(nodep, nodep->classp() ? EmitCUtil::prefixNameProtect(nodep->classp()) + : nodep->prettyDTypeName(false)); } void visit(AstRequireDType* nodep) override { iterateConst(nodep->lhsp()); } void visit(AstModport* nodep) override { diff --git a/test_regress/t/t_dist_warn_coverage.py b/test_regress/t/t_dist_warn_coverage.py index eb118a786..d9f6b4ff5 100755 --- a/test_regress/t/t_dist_warn_coverage.py +++ b/test_regress/t/t_dist_warn_coverage.py @@ -129,7 +129,6 @@ for s in [ 'Unsupported: Per-bit array instantiations', 'Unsupported: Public functions with >64 bit outputs;', 'Unsupported: Public functions with return > 64 bits wide.', - 'Unsupported: Release statement argument is too complex array select', 'Unsupported: Replication to form', 'Unsupported: Shifting of by over 32-bit number isn\'t supported.', @@ -159,7 +158,6 @@ for s in [ 'loading other than unpacked-array variable', 'loading other than unpacked/associative-array variable', # These are safety limits requiring >1000 bins or >10000 members to trigger - ]: Suppressed[s] = True