Fix setting bits of parameters in setundef pass

This commit also adds test that verifies correctness of this change.
This commit is contained in:
mszelwiga
2024-11-08 17:03:08 +01:00
parent cef87cc179
commit 8e508f2a2a
3 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -243,7 +243,7 @@ struct SetundefPass : public Pass {
{
for (auto *cell : module->selected_cells()) {
for (auto &parameter : cell->parameters) {
for (auto bit : parameter.second) {
for (auto &bit : parameter.second.bits()) {
if (bit > RTLIL::State::S1)
bit = worker.next_bit();
}