diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2019-04-05 15:30:19 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2019-04-05 15:30:19 -0700 |
commit | 3c253818cab2013dc4db55732d3e21cfa0dc3f19 (patch) | |
tree | 67cddad61655373c178799e09c746d547d8b8324 /passes | |
parent | 8b6085254a962da46d46724f2333abd076d32928 (diff) | |
download | yosys-3c253818cab2013dc4db55732d3e21cfa0dc3f19.tar.gz yosys-3c253818cab2013dc4db55732d3e21cfa0dc3f19.tar.bz2 yosys-3c253818cab2013dc4db55732d3e21cfa0dc3f19.zip |
"&nf -D 0" fails => use "-D 1" instead
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/abc.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc index c828ad8ed..4876f3009 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 0"; + delay_target = "-D 1"; continue; } if (arg == "-clk" && argidx+1 < args.size()) { |