From b256e640ac752a4749a0642142d6ab1149045547 Mon Sep 17 00:00:00 2001 From: JAEUK LEE Date: Wed, 8 Jul 2026 20:13:47 +0900 Subject: [PATCH] Drop debug-only stream dump changes --- src/V3Width.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/V3Width.cpp b/src/V3Width.cpp index 2cb1d0660..a68e763c7 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -176,17 +176,12 @@ public: bool final() const { return m_stage & FINAL; } void dump(std::ostream& str) const { if (!m_dtypep) { - str << " VUP(s=" << m_stage << ",self"; + str << " VUP(s=" << m_stage << ",self)"; } else { str << " VUP(s=" << m_stage << ",dt=" << cvtToHex(dtypep()); dtypep()->dumpSmall(str); + str << ")"; } - if (m_streamUse == STREAM_USE_ASSIGN) { - str << ",stream=assign"; - } else if (m_streamUse == STREAM_USE_CAST) { - str << ",stream=cast"; - } - str << ")"; } }; std::ostream& operator<<(std::ostream& str, const WidthVP* vup) { @@ -2138,7 +2133,7 @@ class WidthVisitor final : public VNVisitor { void visit(AstCvtUnpackedToQueue* nodep) override { if (nodep->didWidthAndSet()) return; // Opaque returns, so arbitrary - userIterateAndNext(nodep->fromp(), WidthVP{SELF, BOTH, currentStreamUse()}.p()); + userIterateAndNext(nodep->fromp(), WidthVP{SELF, BOTH}.p()); // Type set in constructor } void visit(AstTimeImport* nodep) override {