From 1b77100b6c6063b48c0624d4e689e4a568ddfbb8 Mon Sep 17 00:00:00 2001 From: Kamil Danecki Date: Thu, 19 Mar 2026 11:35:36 +0100 Subject: [PATCH] Remove print Signed-off-by: Kamil Danecki --- src/V3Fork.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3Fork.cpp b/src/V3Fork.cpp index 02850580e..2770589ad 100644 --- a/src/V3Fork.cpp +++ b/src/V3Fork.cpp @@ -434,7 +434,7 @@ class DynScopeVisitor final : public VNVisitor { void visit(AstVarRef* nodep) override { ForkDynScopeFrame* const framep = frameOf(nodep->varp()); if (!framep) return; - UINFO(0, "IS AUTO " << nodep->varp()->lifetime()); + // UINFO(0, "IS AUTO " << nodep->varp()->lifetime()); if (needsDynScope(nodep)) { bool isEvent = false; if (AstBasicDType* const dtypep = VN_CAST(nodep->dtypep()->skipRefp(), BasicDType)) {