aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-04-10 08:31:35 -0700
committerEddie Hung <eddie@fpgeh.com>2019-04-10 08:31:35 -0700
commit78d35a86c0e94f1c5e1606f9953d1f340132f02e (patch)
tree2b40d43a203983593180b26fb2726cfbf52af4a5 /passes
parentc89cd48f58bfe469b0a5b06af5d879ea3be73bd1 (diff)
downloadyosys-78d35a86c0e94f1c5e1606f9953d1f340132f02e.tar.gz
yosys-78d35a86c0e94f1c5e1606f9953d1f340132f02e.tar.bz2
yosys-78d35a86c0e94f1c5e1606f9953d1f340132f02e.zip
Revert ""&nf -D 0" fails => use "-D 1" instead"
This reverts commit 3c253818cab2013dc4db55732d3e21cfa0dc3f19.
Diffstat (limited to 'passes')
-rw-r--r--passes/techmap/abc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc
index e2a152348..f94fc7589 100644
--- a/passes/techmap/abc.cc
+++ b/passes/techmap/abc.cc
@@ -1675,7 +1675,7 @@ struct AbcPass : public Pass {
if (arg == "-dff") {
dff_mode = true;
if (delay_target.empty())
- delay_target = "-D 1";
+ delay_target = "-D 0";
continue;
}
if (arg == "-clk" && argidx+1 < args.size()) {