3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-28 14:53:37 +00:00

abc9: cleanup commented code

This commit is contained in:
Lofty 2026-03-18 13:27:59 +00:00
parent 150860c1c3
commit 926814f1e4
3 changed files with 4 additions and 17 deletions

View file

@ -131,10 +131,6 @@ struct Abc9Pass : public ScriptPass
log(" replaced by this option when used, and an empty string otherwise\n");
log(" (indicating best possible delay).\n");
log("\n");
// log(" -S <num>\n");
// log(" maximum number of LUT inputs shared.\n");
// log(" (replaces {S} in the default scripts above, default: -S 1)\n");
// log("\n");
log(" -lut <width>\n");
log(" generate netlist using luts of (max) the specified width.\n");
log("\n");
@ -226,8 +222,7 @@ struct Abc9Pass : public ScriptPass
exe_cmd << " " << arg << " " << args[++argidx];
continue;
}
if (arg == "-fast" || /* arg == "-dff" || */
/* arg == "-nocleanup" || */ arg == "-showtmp") {
if (arg == "-fast" || arg == "-showtmp") {
exe_cmd << " " << arg;
continue;
}