From a9797f71fef97c8cf48a9a96fa56af4431fb3315 Mon Sep 17 00:00:00 2001 From: Nick Brereton <85175726+nbstrike@users.noreply.github.com> Date: Tue, 24 Feb 2026 22:37:21 -0500 Subject: [PATCH] Update src/V3Timing.cpp Co-authored-by: Wilson Snyder --- src/V3Timing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3Timing.cpp b/src/V3Timing.cpp index 6c53d57ea..3f9bf1a01 100644 --- a/src/V3Timing.cpp +++ b/src/V3Timing.cpp @@ -746,7 +746,7 @@ class TimingControlVisitor final : public VNVisitor { void addForkOnKill(AstBegin* const beginp, AstVarScope* const forkVscp) const { if (!beginp->needProcess()) return; FileLine* const flp = beginp->fileline(); - auto* const onKillp = new AstCMethodHard{flp, new AstVarRef{flp, forkVscp, VAccess::WRITE}, + AstCMethodHard* const onKillp = new AstCMethodHard{flp, new AstVarRef{flp, forkVscp, VAccess::WRITE}, VCMethod::FORK_ON_KILL}; onKillp->dtypeSetVoid(); AstCExpr* const processp = new AstCExpr{flp, "vlProcess"};