mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-31 00:13:18 +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
|
@ -74,7 +74,7 @@ struct ConnwrappersWorker
|
|||
if (!decl_celltypes.count(cell->type))
|
||||
continue;
|
||||
|
||||
for (auto &conn : cell->connections)
|
||||
for (auto &conn : cell->connections_)
|
||||
{
|
||||
std::pair<std::string, std::string> key(cell->type, conn.first);
|
||||
|
||||
|
@ -109,7 +109,7 @@ struct ConnwrappersWorker
|
|||
if (!design->selected(module, cell))
|
||||
continue;
|
||||
|
||||
for (auto &conn : cell->connections)
|
||||
for (auto &conn : cell->connections_)
|
||||
{
|
||||
std::vector<RTLIL::SigBit> sigbits = sigmap(conn.second).to_sigbit_vector();
|
||||
RTLIL::SigSpec old_sig;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue