mirror of https://github.com/YosysHQ/yosys.git
Fixed parsing of nested verilog concatenation and replicate
This commit is contained in:
parent
c832b188a5
commit
4e5350b409
|
@ -1321,7 +1321,7 @@ basic_expr:
|
|||
'{' concat_list '}' {
|
||||
$$ = $2;
|
||||
} |
|
||||
'{' expr '{' expr '}' '}' {
|
||||
'{' expr '{' concat_list '}' '}' {
|
||||
$$ = new AstNode(AST_REPLICATE, $2, $4);
|
||||
} |
|
||||
'~' attr basic_expr %prec UNARY_OPS {
|
||||
|
|
Loading…
Reference in New Issue