aboutsummaryrefslogtreecommitdiffstats
path: root/passes/opt
diff options
context:
space:
mode:
authorN. Engelhardt <nak@yosyshq.com>2022-08-25 11:41:12 +0200
committerGitHub <noreply@github.com>2022-08-25 11:41:12 +0200
commit8e640663d6b7ff84043068f48ed5f3cf7bff4321 (patch)
tree59001b194c2f573674c37352733427a3ec28a1c1 /passes/opt
parent029c2785e810fda0ccc5abbb6057af760f2fc6f3 (diff)
parent9465b2af95a146f514fc1e0b2d31bc3d9a233fb7 (diff)
downloadyosys-8e640663d6b7ff84043068f48ed5f3cf7bff4321.tar.gz
yosys-8e640663d6b7ff84043068f48ed5f3cf7bff4321.tar.bz2
yosys-8e640663d6b7ff84043068f48ed5f3cf7bff4321.zip
Merge pull request #3457 from KrystalDelusion/docs_width
Diffstat (limited to 'passes/opt')
-rw-r--r--passes/opt/opt_dff.cc11
1 files changed, 7 insertions, 4 deletions
diff --git a/passes/opt/opt_dff.cc b/passes/opt/opt_dff.cc
index 6ff2d1b4b..f090d20b2 100644
--- a/passes/opt/opt_dff.cc
+++ b/passes/opt/opt_dff.cc
@@ -853,14 +853,17 @@ struct OptDffPass : public Pass {
log(" opt_dff [-nodffe] [-nosdff] [-keepdc] [-sat] [selection]\n");
log("\n");
log("This pass converts flip-flops to a more suitable type by merging clock enables\n");
- log("and synchronous reset multiplexers, removing unused control inputs, or potentially\n");
- log("removes the flip-flop altogether, converting it to a constant driver.\n");
+ log("and synchronous reset multiplexers, removing unused control inputs, or\n");
+ log("potentially removes the flip-flop altogether, converting it to a constant\n");
+ log("driver.\n");
log("\n");
log(" -nodffe\n");
- log(" disables dff -> dffe conversion, and other transforms recognizing clock enable\n");
+ log(" disables dff -> dffe conversion, and other transforms recognizing clock\n");
+ log(" enable\n");
log("\n");
log(" -nosdff\n");
- log(" disables dff -> sdff conversion, and other transforms recognizing sync resets\n");
+ log(" disables dff -> sdff conversion, and other transforms recognizing sync\n");
+ log(" resets\n");
log("\n");
log(" -simple-dffe\n");
log(" only enables clock enable recognition transform for obvious cases\n");