mirror of
https://github.com/verilator/verilator.git
synced 2025-01-08 23:57:35 +00:00
Fix specparam defaults
This commit is contained in:
parent
85d510cd48
commit
9a3e497c22
@ -2742,9 +2742,14 @@ specifyJunk:
|
||||
;
|
||||
|
||||
specparam_declaration<nodep>: // ==IEEE: specparam_declaration
|
||||
ySPECPARAM junkToSemi ';' { $$ = NULL; }
|
||||
ySPECPARAM junkToSemiList ';' { $$ = NULL; }
|
||||
;
|
||||
|
||||
junkToSemiList:
|
||||
junkToSemi { } /* ignored */
|
||||
| junkToSemiList junkToSemi { } /* ignored */
|
||||
;
|
||||
|
||||
junkToSemi:
|
||||
BISONPRE_NOT(';',yENDSPECIFY,yENDMODULE) { }
|
||||
| error {}
|
||||
|
Loading…
Reference in New Issue
Block a user