Internals: Fix rand dump text
This commit is contained in:
parent
37318ab2bd
commit
5d768a4a20
|
|
@ -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]";
|
||||
|
|
|
|||
Loading…
Reference in New Issue