3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 17:15:33 +00:00

cleaning up for PR

This commit is contained in:
rafaeltp 2018-10-20 18:02:59 -07:00
parent ce069830c5
commit 7b964bfb83
2 changed files with 2 additions and 6 deletions

View file

@ -290,7 +290,7 @@ struct EquivMakeWorker
init_bit2driven();
pool<Cell*> visited_cells;
pool<Cell*> visited_cells;
for (auto c : cells_list)
for (auto &conn : c->connections())
if (!ct.cell_output(c->type, conn.first)) {
@ -418,7 +418,7 @@ struct EquivMakeWorker
}
}
bool check_signal_in_fanout(pool<Cell*> & visited_cells, SigSpec source_bit, SigSpec target_bit)
bool check_signal_in_fanout(pool<Cell*> & visited_cells, SigBit source_bit, SigBit target_bit)
{
if (source_bit == target_bit)
return true;