mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-22 05:43: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
|
@ -163,7 +163,7 @@ struct SplitnetsPass : public Pass {
|
|||
}
|
||||
else
|
||||
{
|
||||
for (auto &w : module->wires) {
|
||||
for (auto &w : module->wires_) {
|
||||
RTLIL::Wire *wire = w.second;
|
||||
if (wire->width > 1 && (wire->port_id == 0 || flag_ports) && design->selected(module, w.second))
|
||||
worker.splitmap[wire] = std::vector<RTLIL::SigBit>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue