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 <lars@metafoo.de>
This commit is contained in:
parent
593a97bede
commit
c124abaa3e
|
|
@ -1138,7 +1138,7 @@ void NetAssignNB::dump(ostream&o, unsigned ind) const
|
|||
if (rval())
|
||||
o << *rval() << ";" << endl;
|
||||
else
|
||||
o << "rval elaboration error>;" << endl;
|
||||
o << "<rval elaboration error>;" << endl;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue