diff --git a/src/V3Param.cpp b/src/V3Param.cpp index 5807b4769..f5abe2e29 100644 --- a/src/V3Param.cpp +++ b/src/V3Param.cpp @@ -330,9 +330,7 @@ class ParamProcessor final { key += " "; key += paramValueKey(dtypep->subDTypep()); } else if (const AstBasicDType* const dtypep = VN_CAST(nodep, BasicDType)) { - if (dtypep->isSigned()) { - key += " signed"; - } + if (dtypep->isSigned()) { key += " signed"; } if (dtypep->isRanged()) { key += "[" + cvtToStr(dtypep->left()) + ":" + cvtToStr(dtypep->right()) + "]"; }