Fix warning IEEE reference (#5453)

This commit is contained in:
Wilson Snyder 2024-09-15 11:05:48 -04:00
parent 77fc771ed0
commit 19170badd3
2 changed files with 2 additions and 2 deletions

View File

@ -2784,7 +2784,7 @@ class WidthVisitor final : public VNVisitor {
<< " in packed struct/union (IEEE 1800-2023 7.2.1)");
if ((VN_IS(nodep, UnionDType) || nodep->packed()) && itemp->valuep()) {
itemp->v3error("Initial values not allowed in packed struct/union"
" (IEEE 1800-2023 7.2.1)");
" (IEEE 1800-2023 7.2.2)");
pushDeletep(itemp->valuep()->unlinkFrBack());
} else if (itemp->valuep()) {
itemp->valuep()->v3warn(E_UNSUPPORTED,

View File

@ -1,4 +1,4 @@
%Error: t/t_struct_packed_init_bad.v:12:17: Initial values not allowed in packed struct/union (IEEE 1800-2023 7.2.1)
%Error: t/t_struct_packed_init_bad.v:12:17: Initial values not allowed in packed struct/union (IEEE 1800-2023 7.2.2)
: ... note: In instance 't'
12 | bit [3:0] m_lo = P;
| ^~~~