aiger2: Ignore benign cells

This commit is contained in:
Martin Povišer 2024-09-18 16:38:05 +02:00
parent 1ab7f29933
commit 72d65063c3
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ struct Index {
int pos = index_wires(info, m);
for (auto cell : m->cells()) {
if (cell->type.in(KNOWN_OPS))
if (cell->type.in(KNOWN_OPS) || cell->type.in(ID($scopeinfo), ID($specify2), ID($specify3)))
continue;
Module *submodule = m->design->module(cell->type);