Remove verbose comments

Co-authored-by: Wilson Snyder <wsnyder@wsnyder.org>
This commit is contained in:
Patrick Creighton 2026-07-08 08:28:16 -07:00 committed by GitHub
parent 8d39a5bbbe
commit 02e6d8bd4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 7 deletions

View File

@ -745,13 +745,6 @@ class CoverageVisitor final : public VNVisitor {
}
}
void visit(AstPropSpec* nodep) override {
// A property specification holds a concurrent (temporal) property
// expression, which is not a procedural statement context. Expression
// coverage must not inject statements into it, else the injected
// references end up outside any procedural context (tripping V3Localize)
// or perturb the property so its clock can no longer be resolved. This
// uniformly covers both named 'property' bodies and inline assert/cover
// property expressions, regardless of any enclosing labelled begin.
VL_RESTORER(m_exprStmtsp);
m_exprStmtsp = nullptr;
iterateChildren(nodep);