mirror of
https://github.com/verilator/verilator.git
synced 2025-01-04 05:37:48 +00:00
Internals: Use typ delay by default
This commit is contained in:
parent
05aecd2c0b
commit
b6b3482010
@ -16,9 +16,14 @@
|
||||
// V3LinkJump's Transformations:
|
||||
//
|
||||
// Each module:
|
||||
// Look for BEGINs
|
||||
// BEGIN(VAR...) -> VAR ... {renamed}
|
||||
// FOR -> WHILEs
|
||||
// Look for BEGINs
|
||||
// BEGIN(VAR...) -> VAR ... {renamed}
|
||||
// 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)
|
||||
//
|
||||
//*************************************************************************
|
||||
|
||||
|
@ -2329,7 +2329,7 @@ delayExpr<nodep>:
|
||||
|
||||
minTypMax<nodep>: // IEEE: mintypmax_expression and constant_mintypmax_expression
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user