Internals: Use typ delay by default
This commit is contained in:
parent
05aecd2c0b
commit
b6b3482010
|
|
@ -20,6 +20,11 @@
|
||||||
// BEGIN(VAR...) -> VAR ... {renamed}
|
// BEGIN(VAR...) -> VAR ... {renamed}
|
||||||
// FOR -> WHILEs
|
// FOR -> WHILEs
|
||||||
//
|
//
|
||||||
|
// Add JumpLabel which branches to after statements within JumpLabel
|
||||||
|
// RETURN -> JUMPLABEL(statements with RETURN changed to JUMPGO)
|
||||||
|
// WHILE(... BREAK) -> JUMPLABEL(WHILE(... statements with BREAK changed to JUMPGO)
|
||||||
|
// WHILE(... CONTINUE) -> WHILE(JUMPLABEL(... statements with CONTINUE changed to JUMPGO)
|
||||||
|
//
|
||||||
//*************************************************************************
|
//*************************************************************************
|
||||||
|
|
||||||
#include "config_build.h"
|
#include "config_build.h"
|
||||||
|
|
|
||||||
|
|
@ -2329,7 +2329,7 @@ delayExpr<nodep>:
|
||||||
|
|
||||||
minTypMax<nodep>: // IEEE: mintypmax_expression and constant_mintypmax_expression
|
minTypMax<nodep>: // IEEE: mintypmax_expression and constant_mintypmax_expression
|
||||||
delayExpr { $$ = $1; }
|
delayExpr { $$ = $1; }
|
||||||
| delayExpr ':' delayExpr ':' delayExpr { $$ = $1; DEL($3); DEL($5); }
|
| delayExpr ':' delayExpr ':' delayExpr { $$ = $3; DEL($1); DEL($5); }
|
||||||
;
|
;
|
||||||
|
|
||||||
netSigList<varp>: // IEEE: list_of_port_identifiers
|
netSigList<varp>: // IEEE: list_of_port_identifiers
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue