3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-12 04:03:45 +00:00

Remove abc9 -clk option

This commit is contained in:
Eddie Hung 2019-12-30 22:59:14 -08:00
parent f1bf44ae8f
commit dacdc6cc94

View file

@ -150,7 +150,7 @@ struct Abc9Pass : public ScriptPass
std::string arg = args[argidx];
if ((arg == "-exe" || arg == "-script" || arg == "-D" ||
/* arg == "-S" || */ arg == "-lut" || arg == "-luts" ||
arg == "-clk" || arg == "-box" || arg == "-W") &&
arg == "-box" || arg == "-W") &&
argidx+1 < args.size()) {
map_cmd << " " << arg << " " << args[++argidx];
continue;