aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-12-30 22:59:14 -0800
committerEddie Hung <eddie@fpgeh.com>2019-12-30 22:59:14 -0800
commitdacdc6cc941015aff45d1fde4d5365ab5e36e883 (patch)
tree64b44a6a68cf3c54fba36e7bdb0a2f9e736c35e0 /passes
parentf1bf44ae8f66e81b7de6a2ec47c4a9dffe7e6587 (diff)
downloadyosys-dacdc6cc941015aff45d1fde4d5365ab5e36e883.tar.gz
yosys-dacdc6cc941015aff45d1fde4d5365ab5e36e883.tar.bz2
yosys-dacdc6cc941015aff45d1fde4d5365ab5e36e883.zip
Remove abc9 -clk option
Diffstat (limited to 'passes')
-rw-r--r--passes/techmap/abc9.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc
index 9e1318700..f44e3df06 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -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;