mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-22 22:03:40 +00:00
Refactoring: Renamed RTLIL::Module::wires to wires_
This commit is contained in:
parent
d7916a49af
commit
f9946232ad
50 changed files with 191 additions and 191 deletions
|
@ -173,11 +173,11 @@ struct FsmDetectPass : public Pass {
|
|||
}
|
||||
}
|
||||
|
||||
for (auto &wire_it : module->wires)
|
||||
for (auto &wire_it : module->wires_)
|
||||
if (wire_it.second->port_id != 0)
|
||||
sig_at_port.add(assign_map(RTLIL::SigSpec(wire_it.second)));
|
||||
|
||||
for (auto &wire_it : module->wires)
|
||||
for (auto &wire_it : module->wires_)
|
||||
if (design->selected(module, wire_it.second))
|
||||
detect_fsm(wire_it.second);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue