mirror of
https://github.com/verilator/verilator.git
synced 2026-09-04 08:33:38 +02:00
Internals: Fix rand dump text
This commit is contained in:
+1
-1
@@ -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]";
|
||||
|
||||
Reference in New Issue
Block a user