Apply 'make format'

This commit is contained in:
github action 2023-01-19 23:22:37 +00:00
parent c1c0aa61f9
commit 41e5f6b7d5

View File

@ -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()) + "]";
}