mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-03 01:40:23 +00:00
tiny fix
This commit is contained in:
parent
866b7a7121
commit
4c9f68216a
8 changed files with 10 additions and 10 deletions
|
@ -361,7 +361,7 @@ bool rmunused_module_signals(RTLIL::Module *module, bool purge_mode, bool verbos
|
|||
// gather the usage information for cells
|
||||
for (auto &it : module->cells_) {
|
||||
RTLIL::Cell *cell = it.second;
|
||||
for (auto &it2 : cell->connections_) {
|
||||
for (auto it2 : cell->connections_) {
|
||||
assign_map.apply(it2.second); // modify the cell connection in place
|
||||
raw_used_signals.add(it2.second);
|
||||
used_signals.add(it2.second);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue