mirror of https://github.com/YosysHQ/yosys.git
parent
3b97b612fe
commit
d55790909c
|
@ -238,20 +238,11 @@ struct SetundefPass : public Pass {
|
|||
{
|
||||
if (params_mode)
|
||||
{
|
||||
for (auto *cell : module->cells())
|
||||
{
|
||||
// Only modify selected cells.
|
||||
if (!design->selected(module, it)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
for (auto ¶meter : cell->parameters)
|
||||
{
|
||||
for (auto *cell : module->selected_cells()) {
|
||||
for (auto ¶meter : cell->parameters) {
|
||||
for (auto &bit : parameter.second.bits) {
|
||||
if (bit > RTLIL::State::S1)
|
||||
{
|
||||
bit = worker.next_bit();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue