From 65ee9cd8659ab34955643936b140696b8bb7feaa Mon Sep 17 00:00:00 2001 From: Matthew Ballance Date: Thu, 19 Mar 2026 13:56:11 +0000 Subject: [PATCH] Format fixes Signed-off-by: Matthew Ballance --- src/V3AstNodeOther.h | 3 ++- src/V3LinkParse.cpp | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/V3AstNodeOther.h b/src/V3AstNodeOther.h index 221f6c5e6..8690ffdcf 100644 --- a/src/V3AstNodeOther.h +++ b/src/V3AstNodeOther.h @@ -2737,7 +2737,8 @@ public: }; class AstCoverpoint final : public AstNodeFuncCovItem { // @astgen op1 := exprp : AstNodeExpr - // @astgen op2 := binsp : List[AstNode] // Parse: mixed AstCoverBin/AstCgOptionAssign; post-LinkParse: AstCoverBin only + // @astgen op2 := binsp : List[AstNode] // Parse: mixed AstCoverBin/AstCgOptionAssign; + // post-LinkParse: AstCoverBin only // @astgen op3 := iffp : Optional[AstNodeExpr] // @astgen op4 := optionsp : List[AstCoverOption] public: diff --git a/src/V3LinkParse.cpp b/src/V3LinkParse.cpp index 4e44b84fd..5ee35eca9 100644 --- a/src/V3LinkParse.cpp +++ b/src/V3LinkParse.cpp @@ -1352,8 +1352,8 @@ class LinkParseVisitor final : public VNVisitor { } else { optp->v3warn(COVERIGN, "Ignoring unsupported coverage option: " + optp->name()); } - nodep->addOptionsp( - new AstCoverOption{optp->fileline(), optType, optp->valuep()->cloneTree(false)}); + nodep->addOptionsp(new AstCoverOption{optp->fileline(), optType, + optp->valuep()->cloneTree(false)}); VL_DO_DANGLING(optp->deleteTree(), optp); } }