mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-15 08:44:11 +00:00
abstract: skip $input_port cells
This commit is contained in:
parent
9d3928c014
commit
3257b8ae1e
1 changed files with 2 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue