From d8df216a8d7b0453fd20f218966804c92a81d95b Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 17 Oct 2020 20:05:21 -0400 Subject: [PATCH] Fix emit indent of VL_TO_STRING --- src/V3Width.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/V3Width.cpp b/src/V3Width.cpp index 9d6b45872..8514f01a0 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -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);