mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-22 22:03:40 +00:00
Changed users of cell->connections_ to the new API (sed command)
git grep -l 'connections_' | xargs sed -i -r -e ' s/(->|\.)connections_\["([^"]*)"\] = (.*);/\1set("\2", \3);/g; s/(->|\.)connections_\["([^"]*)"\]/\1get("\2")/g; s/(->|\.)connections_.at\("([^"]*)"\)/\1get("\2")/g; s/(->|\.)connections_.push_back/\1connect/g; s/(->|\.)connections_/\1connections()/g;'
This commit is contained in:
parent
cd6574ecf6
commit
b7dda72302
61 changed files with 1201 additions and 1201 deletions
|
@ -134,7 +134,7 @@ struct SplitnetsPass : public Pass {
|
|||
std::map<RTLIL::Wire*, std::set<int>> split_wires_at;
|
||||
|
||||
for (auto &c : module->cells)
|
||||
for (auto &p : c.second->connections_)
|
||||
for (auto &p : c.second->connections())
|
||||
{
|
||||
if (!ct.cell_known(c.second->type))
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue