mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-05 02:40:25 +00:00
look at all those chickens
This commit is contained in:
parent
8bdcc6987b
commit
61cf4b6fb6
15 changed files with 48 additions and 42 deletions
|
@ -498,7 +498,7 @@ struct ExposePass : public Pass {
|
|||
for (auto cell : module->cells()) {
|
||||
if (!ct.cell_known(cell->type))
|
||||
continue;
|
||||
for (auto &conn : cell->connections_)
|
||||
for (auto &&conn : cell->connections_)
|
||||
if (ct.cell_output(cell->type, conn.first))
|
||||
conn.second = out_to_in_map(sigmap(conn.second));
|
||||
}
|
||||
|
@ -519,7 +519,7 @@ struct ExposePass : public Pass {
|
|||
for (auto cell : module->cells()) {
|
||||
if (!ct.cell_known(cell->type))
|
||||
continue;
|
||||
for (auto &conn : cell->connections_)
|
||||
for (auto &&conn : cell->connections_)
|
||||
if (ct.cell_input(cell->type, conn.first))
|
||||
conn.second = out_to_in_map(sigmap(conn.second));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue