3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

bufnorm: avoid remove warning. NFC

This commit is contained in:
Emil J. Tywoniak 2024-10-07 17:58:48 +02:00
parent 1bf908dea8
commit a76bcdc58f

View file

@ -70,9 +70,9 @@ struct BufnormPass : public Pass {
log(" to chain 'keep' wires first, then ports in declaration order,\n"); log(" to chain 'keep' wires first, then ports in declaration order,\n");
log(" and then the other wires in alphanumeric sort order.)\n"); log(" and then the other wires in alphanumeric sort order.)\n");
log("\n"); log("\n");
log(" -noinit\n"); // log(" -noinit\n");
log(" Do not move 'init' attributes to the wires on FF output ports.\n"); // log(" Do not move 'init' attributes to the wires on FF output ports.\n");
log("\n"); // log("\n");
log("Run 'bufnorm' with -pos, -bits, or -conn on the whole design to remove all\n"); log("Run 'bufnorm' with -pos, -bits, or -conn on the whole design to remove all\n");
log("$buf buffer cells and exit 'buffered-normalized mode' again.\n"); log("$buf buffer cells and exit 'buffered-normalized mode' again.\n");
log("\n"); log("\n");
@ -108,7 +108,7 @@ struct BufnormPass : public Pass {
bool nokeep_mode = false; bool nokeep_mode = false;
bool nosticky_mode = false; bool nosticky_mode = false;
bool alphasort_mode = false; bool alphasort_mode = false;
bool noinit_mode = false; // FIXME: Actually move init attributes // bool noinit_mode = false; // FIXME: Actually move init attributes
bool nomode_mode = false; bool nomode_mode = false;
bool pos_mode = false; bool pos_mode = false;
@ -169,11 +169,11 @@ struct BufnormPass : public Pass {
got_non_update_reset_opt = true; got_non_update_reset_opt = true;
continue; continue;
} }
if (arg == "-noinit") { // if (arg == "-noinit") {
noinit_mode = true; // noinit_mode = true;
got_non_update_reset_opt = true; // got_non_update_reset_opt = true;
continue; // continue;
} // }
if (arg == "-pos") { if (arg == "-pos") {
pos_mode = true; pos_mode = true;
got_non_update_reset_opt = true; got_non_update_reset_opt = true;