mirror of https://github.com/YosysHQ/yosys.git
Also remove $__ABC_FF_
This commit is contained in:
parent
659c04a68d
commit
ef757002db
|
@ -566,7 +566,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri
|
||||||
vector<RTLIL::Cell*> boxes;
|
vector<RTLIL::Cell*> boxes;
|
||||||
for (const auto &it : module->cells_) {
|
for (const auto &it : module->cells_) {
|
||||||
auto cell = it.second;
|
auto cell = it.second;
|
||||||
if (cell->type.in("$_AND_", "$_NOT_")) {
|
if (cell->type.in("$_AND_", "$_NOT_", "$__ABC_FF_")) {
|
||||||
module->remove(cell);
|
module->remove(cell);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue