diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 09:14:27 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-12 09:14:27 -0700 |
commit | b2c72f74f00032d1ac5071f8bb32b87c9dc4c23e (patch) | |
tree | 92702fcb34ef63b264093d9a43e4ca69ff8ae2da /passes/techmap | |
parent | 2cbcd6224c0293a3abdf00f51c515fc556d9d3e1 (diff) | |
parent | 7eec64a38fb9362a43916aec79c7fca04b6ba72c (diff) | |
download | yosys-b2c72f74f00032d1ac5071f8bb32b87c9dc4c23e.tar.gz yosys-b2c72f74f00032d1ac5071f8bb32b87c9dc4c23e.tar.bz2 yosys-b2c72f74f00032d1ac5071f8bb32b87c9dc4c23e.zip |
Merge branch 'xc7mux' into xaig
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; |