Commentary

This commit is contained in:
Wilson Snyder 2020-03-30 20:09:55 -04:00
parent 5c72f01598
commit ebeb645539
2 changed files with 3 additions and 0 deletions

View File

@ -1664,6 +1664,7 @@ member_decl_assignment<memberp>: // Derived from IEEE: variable_decl_assignment
}
| id variable_dimensionListE '=' variable_declExpr
{ $4->v3error("Unsupported: Initial values in struct/union members.");
// But still need error if packed according to IEEE 7.2.2
$$ = NULL; }
| idSVKwd { $$ = NULL; }
//

View File

@ -7,6 +7,8 @@
program t;
parameter SIZE = 5;
typedef vec_t; // Forward
typedef reg [SIZE-1:0] vec_t ;
vec_t a; initial a =0;