aiger2: Ignore benign cells

This commit is contained in:
Martin Povišer
2024-09-18 16:42:56 +02:00
parent 1ab7f29933
commit 72d65063c3
+1 -1
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);