mirror of https://github.com/YosysHQ/yosys.git
Fix select_op_random ignoring boxes
This commit is contained in:
parent
06f2d1e0fc
commit
453e9f0a23
|
@ -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…
Reference in New Issue