mirror of https://github.com/YosysHQ/yosys.git
Fixed bug in verilog parser
This commit is contained in:
parent
302166dd59
commit
5308c1e02a
|
@ -759,7 +759,7 @@ assign_expr_list:
|
|||
assign_expr | assign_expr_list ',' assign_expr;
|
||||
|
||||
assign_expr:
|
||||
expr '=' expr {
|
||||
lvalue '=' expr {
|
||||
ast_stack.back()->children.push_back(new AstNode(AST_ASSIGN, $1, $3));
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue