mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Fix warning IEEE reference (#5453)
This commit is contained in:
parent
77fc771ed0
commit
19170badd3
@ -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,
|
||||
|
@ -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;
|
||||
| ^~~~
|
||||
|
Loading…
Reference in New Issue
Block a user