3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-15 16:54:12 +00:00

rtlil_bufnorm: fix cell deletion deferral bug

This commit is contained in:
Emil J. Tywoniak 2026-03-07 01:10:04 +01:00
parent b7c97ba743
commit b206223c40

View file

@ -75,9 +75,9 @@ struct RTLIL::SigNormIndex
else
cells_to_remove.push_back(cell);
for (auto cell : cells_to_remove)
module->remove(cell);
}
for (auto cell : cells_to_remove)
module->remove(cell);
for (auto portname : module->ports) {
Wire *wire = module->wire(portname);