mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-03 04:41:22 +00:00
Fix select_op_random ignoring boxes
This commit is contained in:
parent
59802584b0
commit
f15cd73419
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ static void select_op_random(RTLIL::Design *design, RTLIL::Selection &lhs, int c
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
lhs = RTLIL::Selection(false, false, design);
|
lhs = RTLIL::Selection(false, lhs.selects_boxes, design);
|
||||||
|
|
||||||
while (!objects.empty() && count-- > 0)
|
while (!objects.empty() && count-- > 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue