Typo: wire delay is -W argument
authorEddie Hung <eddie@fpgeh.com>
Wed, 12 Jun 2019 16:13:53 +0000 (09:13 -0700)
committerEddie Hung <eddie@fpgeh.com>
Wed, 12 Jun 2019 16:13:53 +0000 (09:13 -0700)
passes/techmap/abc9.cc

index 19157adc60d647d7c3e4e5dc73d198efd2961d6c..fef977eb854859772cb15550c46c27d28cfe0c57 100644 (file)
@@ -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;