mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Fix select_op_random ignoring boxes
This commit is contained in:
parent
06f2d1e0fc
commit
453e9f0a23
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue