From fe26b9212eb85d6876315a2ac10216ac1cf25594 Mon Sep 17 00:00:00 2001 From: Matthew Ballance Date: Sun, 15 Mar 2026 19:33:46 +0000 Subject: [PATCH] Clean up comments Signed-off-by: Matthew Ballance --- src/V3Active.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/V3Active.cpp b/src/V3Active.cpp index 1495cccff..ff6133f4b 100644 --- a/src/V3Active.cpp +++ b/src/V3Active.cpp @@ -710,10 +710,7 @@ class CovergroupSamplingVisitor final : public VNVisitor { AstCMethodCall* const cmethodCallp = new AstCMethodCall{fl, varrefp, sampleCFuncp, nullptr}; - // Set dtype to void since sample() doesn't return a value cmethodCallp->dtypeSetVoid(); - - // Set argTypes to "vlSymsp" so the emit code will pass it automatically cmethodCallp->argTypes("vlSymsp"); // Clone the sensitivity for this active block. @@ -739,9 +736,6 @@ class CovergroupSamplingVisitor final : public VNVisitor { public: // CONSTRUCTORS explicit CovergroupSamplingVisitor(AstNetlist* nodep) { - // NOTE: Automatic sampling now works with --timing - // Previously disabled due to compatibility issues with V3Timing transformations - // The current implementation injects sampling before V3Active, allowing both modes to work UINFO(4, "CovergroupSamplingVisitor: Starting" << endl);