mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 22:23:23 +00:00
Add missing semicolons
Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com>
This commit is contained in:
parent
d77b3305d8
commit
02c071888b
1 changed files with 5 additions and 5 deletions
|
@ -1342,12 +1342,12 @@ param_integer:
|
||||||
astbuf1->children.back()->children.push_back(AstNode::mkconst_int(31, true));
|
astbuf1->children.back()->children.push_back(AstNode::mkconst_int(31, true));
|
||||||
astbuf1->children.back()->children.push_back(AstNode::mkconst_int(0, true));
|
astbuf1->children.back()->children.push_back(AstNode::mkconst_int(0, true));
|
||||||
astbuf1->is_signed = true;
|
astbuf1->is_signed = true;
|
||||||
}
|
};
|
||||||
|
|
||||||
param_real:
|
param_real:
|
||||||
TOK_REAL {
|
TOK_REAL {
|
||||||
astbuf1->children.push_back(new AstNode(AST_REALVALUE));
|
astbuf1->children.push_back(new AstNode(AST_REALVALUE));
|
||||||
}
|
};
|
||||||
|
|
||||||
param_range:
|
param_range:
|
||||||
range {
|
range {
|
||||||
|
@ -1356,9 +1356,9 @@ param_range:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
param_integer_type: param_integer param_signed
|
param_integer_type: param_integer param_signed;
|
||||||
param_range_type: type_vec param_signed param_range
|
param_range_type: type_vec param_signed param_range;
|
||||||
param_implicit_type: param_signed param_range
|
param_implicit_type: param_signed param_range;
|
||||||
|
|
||||||
param_type:
|
param_type:
|
||||||
param_integer_type | param_real | param_range_type | param_implicit_type |
|
param_integer_type | param_real | param_range_type | param_implicit_type |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue