From: Eddie Hung Date: Wed, 12 Jun 2019 16:13:53 +0000 (-0700) Subject: Typo: wire delay is -W argument X-Git-Tag: working-ls180~1208^2~162 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=afd620fd5f4236a802b3e6139a5d58821153b01e;p=yosys.git Typo: wire delay is -W argument --- 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;