Also remove $__ABC_FF_

This commit is contained in:
Eddie Hung 2019-07-01 10:55:24 -07:00
parent 659c04a68d
commit ef757002db
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri
vector<RTLIL::Cell*> boxes;
for (const auto &it : module->cells_) {
auto cell = it.second;
if (cell->type.in("$_AND_", "$_NOT_")) {
if (cell->type.in("$_AND_", "$_NOT_", "$__ABC_FF_")) {
module->remove(cell);
continue;
}