mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +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
|
@ -79,7 +79,7 @@ struct DeletePass : public Pass {
|
|||
RTLIL::Module *module = mod_it.second;
|
||||
|
||||
if (flag_input || flag_output) {
|
||||
for (auto &it : module->wires)
|
||||
for (auto &it : module->wires_)
|
||||
if (design->selected(module, it.second)) {
|
||||
if (flag_input)
|
||||
it.second->port_input = false;
|
||||
|
@ -95,7 +95,7 @@ struct DeletePass : public Pass {
|
|||
std::set<std::string> delete_procs;
|
||||
std::set<std::string> delete_mems;
|
||||
|
||||
for (auto &it : module->wires)
|
||||
for (auto &it : module->wires_)
|
||||
if (design->selected(module, it.second))
|
||||
delete_wires.insert(it.second);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue