Format fixes

Signed-off-by: Matthew Ballance <matt.ballance@gmail.com>
This commit is contained in:
Matthew Ballance 2026-03-19 13:56:11 +00:00
parent 601e05615d
commit 65ee9cd865
2 changed files with 4 additions and 3 deletions

View File

@ -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:

View File

@ -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);
}
}