3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 01:54:10 +00:00

opt_dff: Fix behavior on $ff with D == Q.

This commit is contained in:
Marcelina Kościelnicka 2022-04-14 15:08:20 +02:00
parent c1646a00ac
commit 48eea3efcf

View file

@ -554,7 +554,7 @@ struct OptDffWorker
// The D input path is effectively useless, so remove it (this will be a const-input D latch, SR latch, or a const driver).
log("Handling D = Q on %s (%s) from module %s (removing D path).\n",
log_id(cell), log_id(cell->type), log_id(module));
ff.has_clk = ff.has_ce = false;
ff.has_gclk = ff.has_clk = ff.has_ce = false;
changed = true;
}
}