From: Eddie Hung Date: Mon, 1 Jul 2019 17:55:24 +0000 (-0700) Subject: Also remove $__ABC_FF_ X-Git-Tag: working-ls180~881^2^2~289 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef757002dbc8280a65d25618e57b20d3dbadd64a;p=yosys.git Also remove $__ABC_FF_ --- diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index 2eee43739..30df8e3ef 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -566,7 +566,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri vector 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; }