Fixed parsing of nested verilog concatenation and replicate

This commit is contained in:
Clifford Wolf 2014-11-12 19:10:35 +01:00
parent c832b188a5
commit 4e5350b409
1 changed files with 1 additions and 1 deletions

View File

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