Fix formatting of %p to be spaceless

This commit is contained in:
Wilson Snyder 2025-12-26 21:45:52 -05:00
parent b50e8bb9c1
commit 7a2b20cff3
5 changed files with 18 additions and 18 deletions

View File

@ -5896,7 +5896,7 @@ class WidthVisitor final : public VNVisitor {
if (fmt == "%0") { if (fmt == "%0") {
newFormat += "'h%0h"; // IEEE our choice newFormat += "'h%0h"; // IEEE our choice
} else { } else {
newFormat += "%d"; newFormat += "%0d"; // UVM tests require %0d
} }
} }
if (argp) argp = VN_AS(argp->nextp(), NodeExpr); if (argp) argp = VN_AS(argp->nextp(), NodeExpr);