aboutsummaryrefslogtreecommitdiffstats
path: root/passes/sat/fmcombine.cc
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2020-06-30 21:07:17 +0200
committerMarcelina Koƛcielnicka <mwk@0x04.net>2020-06-30 21:07:17 +0200
commit7c91f13f51c6c93dbece0eed91977241b7c346df (patch)
tree4036cb3e3fe088ff243703e51af8b4ec0a10a4a0 /passes/sat/fmcombine.cc
parent817ae04ee0c445efaf83e9847d4956f2dae0d857 (diff)
downloadyosys-7c91f13f51c6c93dbece0eed91977241b7c346df.tar.gz
yosys-7c91f13f51c6c93dbece0eed91977241b7c346df.tar.bz2
yosys-7c91f13f51c6c93dbece0eed91977241b7c346df.zip
fmcombine: use the master ff cell type list
Diffstat (limited to 'passes/sat/fmcombine.cc')
-rw-r--r--passes/sat/fmcombine.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/passes/sat/fmcombine.cc b/passes/sat/fmcombine.cc
index 5694a7473..cb49edac3 100644
--- a/passes/sat/fmcombine.cc
+++ b/passes/sat/fmcombine.cc
@@ -114,8 +114,7 @@ struct FmcombineWorker
Cell *gold = import_prim_cell(cell, "_gold");
Cell *gate = import_prim_cell(cell, "_gate");
if (opts.initeq) {
- if (cell->type.in(ID($ff), ID($dff), ID($dffe),
- ID($dffsr), ID($adff), ID($dlatch), ID($dlatchsr))) {
+ if (RTLIL::builtin_ff_cell_types().count(cell->type)) {
SigSpec gold_q = gold->getPort(ID::Q);
SigSpec gate_q = gate->getPort(ID::Q);
SigSpec en = module->Initstate(NEW_ID);