aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/dffunmap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'passes/techmap/dffunmap.cc')
-rw-r--r--passes/techmap/dffunmap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/techmap/dffunmap.cc b/passes/techmap/dffunmap.cc
index fb107ff75..583185e75 100644
--- a/passes/techmap/dffunmap.cc
+++ b/passes/techmap/dffunmap.cc
@@ -84,7 +84,7 @@ struct DffunmapPass : public Pass {
continue;
if (ce_only) {
- if (!ff.has_en)
+ if (!ff.has_ce)
continue;
ff.unmap_ce(mod);
} else if (srst_only) {
@@ -92,7 +92,7 @@ struct DffunmapPass : public Pass {
continue;
ff.unmap_srst(mod);
} else {
- if (!ff.has_en && !ff.has_srst)
+ if (!ff.has_ce && !ff.has_srst)
continue;
ff.unmap_ce_srst(mod);
}