mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +00:00
Renamed RTLIL::{Module,Cell}::connections to connections_
This commit is contained in:
parent
665759fcee
commit
cc4f10883b
62 changed files with 1234 additions and 1213 deletions
|
@ -30,7 +30,7 @@ static void find_stub_nets(RTLIL::Design *design, RTLIL::Module *module, bool re
|
|||
|
||||
// For all ports on all cells
|
||||
for (auto &cell_iter : module->cells)
|
||||
for (auto &conn : cell_iter.second->connections)
|
||||
for (auto &conn : cell_iter.second->connections_)
|
||||
{
|
||||
// Get the signals on the port
|
||||
// (use sigmap to get a uniqe signal name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue