mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Fixed detectSignWidthWorker (ast frontend) for AST_CONCAT
This commit is contained in:
parent
ada80545fa
commit
d2b083f5cb
|
@ -587,7 +587,7 @@ void AstNode::detectSignWidthWorker(int &width_hint, bool &sign_hint)
|
||||||
for (auto child : children) {
|
for (auto child : children) {
|
||||||
sub_width_hint = 0;
|
sub_width_hint = 0;
|
||||||
sub_sign_hint = true;
|
sub_sign_hint = true;
|
||||||
child->detectSignWidthWorker(width_hint, sign_hint);
|
child->detectSignWidthWorker(sub_width_hint, sub_sign_hint);
|
||||||
this_width += sub_width_hint;
|
this_width += sub_width_hint;
|
||||||
}
|
}
|
||||||
width_hint = std::max(width_hint, this_width);
|
width_hint = std::max(width_hint, this_width);
|
||||||
|
|
Loading…
Reference in a new issue