mirror of https://github.com/YosysHQ/yosys.git
Remove redundant condition
This commit is contained in:
parent
9b55e69755
commit
46e69ee934
|
@ -329,7 +329,7 @@ struct XAigerWriter
|
||||||
//log_warning("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell));
|
//log_warning("Unsupported cell type: %s (%s)\n", log_id(cell->type), log_id(cell));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (abc_box_seen && !holes_mode) {
|
if (abc_box_seen) {
|
||||||
for (auto &it : bit_users)
|
for (auto &it : bit_users)
|
||||||
if (bit_drivers.count(it.first))
|
if (bit_drivers.count(it.first))
|
||||||
for (auto driver_cell : bit_drivers.at(it.first))
|
for (auto driver_cell : bit_drivers.at(it.first))
|
||||||
|
|
Loading…
Reference in New Issue