Fix emit indent of VL_TO_STRING

This commit is contained in:
Wilson Snyder 2020-10-17 20:05:21 -04:00
parent 964dcd5b7c
commit d8df216a8d

View File

@ -3335,7 +3335,7 @@ private:
argp->unlinkFrBack(&handle);
AstCMath* newp = new AstCMath(nodep->fileline(), "VL_TO_STRING(", 0, true);
newp->addBodysp(argp);
newp->addBodysp(new AstText(nodep->fileline(), ")"));
newp->addBodysp(new AstText(nodep->fileline(), ")", true));
newp->dtypeSetString();
newp->pure(true);
newp->protect(false);