Ignore unsupported statements in the specify block
Signed-off-by: Krzysztof Sychla <ksychla@antmicro.com>
This commit is contained in:
parent
9a64049c7e
commit
31e5c526cf
|
|
@ -5775,9 +5775,8 @@ specify_itemList<nodep>: // IEEE: { specify_item }
|
|||
;
|
||||
|
||||
specify_item<nodep>: // ==IEEE: specify_item
|
||||
specparam_declaration { $$ = $1; }
|
||||
| system_timing_check { $$ = $1; }
|
||||
| yaTIMINGSPEC junkToSemiList ';' { $$ = nullptr; }
|
||||
system_timing_check { $$ = $1; }
|
||||
| junkToSemiList ';' { $$ = nullptr; }
|
||||
;
|
||||
|
||||
specparam_declaration<nodep>: // ==IEEE: specparam_declaration
|
||||
|
|
@ -5828,7 +5827,7 @@ junkToSemiList:
|
|||
;
|
||||
|
||||
junkToSemi:
|
||||
BISONPRE_NOT(';',yENDSPECIFY,yENDMODULE) { }
|
||||
BISONPRE_NOT(';',yENDSPECIFY,yENDMODULE,yD_SETUPHOLD) { }
|
||||
| error {}
|
||||
;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue