mirror of https://github.com/YosysHQ/yosys.git
aiger2: Ignore benign cells
This commit is contained in:
parent
1ab7f29933
commit
72d65063c3
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue