From: Marcelina Koƛcielnicka Date: Thu, 14 Apr 2022 13:08:20 +0000 (+0200) Subject: opt_dff: Fix behavior on $ff with D == Q. X-Git-Tag: yosys-0.17~30 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48eea3efcf4d88d16b170a1915bda0fe691924a1;p=yosys.git opt_dff: Fix behavior on $ff with D == Q. --- diff --git a/passes/opt/opt_dff.cc b/passes/opt/opt_dff.cc index 73d674c8d..0ad4acec2 100644 --- a/passes/opt/opt_dff.cc +++ b/passes/opt/opt_dff.cc @@ -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; } }