Internals: Fix rand dump text

This commit is contained in:
Wilson Snyder 2025-12-10 19:07:51 -05:00
parent 37318ab2bd
commit 5d768a4a20
1 changed files with 1 additions and 1 deletions

View File

@ -2775,7 +2775,7 @@ void AstVar::dump(std::ostream& str) const {
if (isInternal()) str << " [INTERNAL]";
if (isLatched()) str << " [LATCHED]";
if (isUsedLoopIdx()) str << " [LOOPIDX]";
if (rand().isRandomizable()) str << rand();
if (rand().isRandomizable()) str << " [" << rand() << "]";
if (noReset()) str << " [!RST]";
if (attrIsolateAssign()) str << " [aISO]";
if (attrFileDescr()) str << " [aFD]";