Internals: Use typ delay by default

This commit is contained in:
Wilson Snyder 2020-05-05 20:42:19 -04:00
parent 05aecd2c0b
commit b6b3482010
2 changed files with 9 additions and 4 deletions

View File

@ -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"

View File

@ -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