From c124abaa3e2746897dcf5aae8c74012d1e0b0987 Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Sat, 20 Jun 2026 15:15:52 -0700 Subject: [PATCH] NetAssignNB: Fix dump fallback for invalid rval Currently NetAssignNB::dump() prints a malformed fallback marker when there is no rval expression. The leading '<' is missing, making it inconsistent with the blocking assignment dump output. Print the complete error marker. Signed-off-by: Lars-Peter Clausen --- design_dump.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design_dump.cc b/design_dump.cc index fe5d9edf3..ee9a1cb8e 100644 --- a/design_dump.cc +++ b/design_dump.cc @@ -1138,7 +1138,7 @@ void NetAssignNB::dump(ostream&o, unsigned ind) const if (rval()) o << *rval() << ";" << endl; else - o << "rval elaboration error>;" << endl; + o << ";" << endl; }