Cleanup extra space on 'VlWide<...>>'

This commit is contained in:
Wilson Snyder 2020-12-23 18:09:12 -05:00
parent 93476a7372
commit 9f8b17230a
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ AstNodeDType::CTypeRecursed AstNodeDType::cTypeRecurse(bool compound) const {
info.m_type = "QData" + bitvec; info.m_type = "QData" + bitvec;
} else if (dtypep->isWide()) { } else if (dtypep->isWide()) {
if (compound) { if (compound) {
info.m_type = "VlWide<" + cvtToStr(dtypep->widthWords()) + "> "; info.m_type = "VlWide<" + cvtToStr(dtypep->widthWords()) + ">";
} else { } else {
info.m_type += "WData" + bitvec; // []'s added later info.m_type += "WData" + bitvec; // []'s added later
info.m_dims = "[" + cvtToStr(dtypep->widthWords()) + "]"; info.m_dims = "[" + cvtToStr(dtypep->widthWords()) + "]";