aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-06-12 09:13:53 -0700
committerEddie Hung <eddie@fpgeh.com>2019-06-12 09:13:53 -0700
commitafd620fd5f4236a802b3e6139a5d58821153b01e (patch)
tree3e269c8aee9673f0704e4cc1c0e949f9ce80fa85 /passes/techmap
parent2dffa4685b830313204f5d04314a14ed6ecac8ec (diff)
downloadyosys-afd620fd5f4236a802b3e6139a5d58821153b01e.tar.gz
yosys-afd620fd5f4236a802b3e6139a5d58821153b01e.tar.bz2
yosys-afd620fd5f4236a802b3e6139a5d58821153b01e.zip
Typo: wire delay is -W argument
Diffstat (limited to 'passes/techmap')
-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 19157adc6..fef977eb8 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -1219,7 +1219,7 @@ struct Abc9Pass : public Pass {
continue;
}
if (arg == "-W" && argidx+1 < args.size()) {
- wire_delay = "-S " + args[++argidx];
+ wire_delay = "-W " + args[++argidx];
continue;
}
break;