1
0
mirror of synced 2026-03-28 19:12:08 +00:00

abstract: skip $input_port cells

This commit is contained in:
Emil J. Tywoniak
2026-03-17 16:34:41 +01:00
parent 9d3928c014
commit 3257b8ae1e

View File

@@ -265,6 +265,8 @@ unsigned int abstract_value(Module* mod, EnableLogic enable, const std::vector<S
unsigned int changed = 0;
std::vector<Cell*> cells_snapshot = mod->cells();
for (auto cell : cells_snapshot) {
if (cell->type == ID($input_port))
continue;
for (auto conn : cell->connections())
if (cell->output(conn.first)) {
std::set<int> offsets_to_abstract;