diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 09:13:53 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 09:13:53 -0700 |
commit | afd620fd5f4236a802b3e6139a5d58821153b01e (patch) | |
tree | 3e269c8aee9673f0704e4cc1c0e949f9ce80fa85 /passes/techmap | |
parent | 2dffa4685b830313204f5d04314a14ed6ecac8ec (diff) | |
download | yosys-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.cc | 2 |
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; |