diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-18 07:59:16 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-18 07:59:16 -0700 |
commit | 6008bb7002f874e5c748eaa2050e7b6c17b32745 (patch) | |
tree | 144826f52008c12014157b186b3aa0f057c8d79b /techlibs/achronix/synth_achronix.cc | |
parent | 0642baabbceaf4e34ae03c47136ed987b976cdbb (diff) | |
download | yosys-6008bb7002f874e5c748eaa2050e7b6c17b32745.tar.gz yosys-6008bb7002f874e5c748eaa2050e7b6c17b32745.tar.bz2 yosys-6008bb7002f874e5c748eaa2050e7b6c17b32745.zip |
Revert "synth_* with -retime option now calls abc with -D 1 as well"
This reverts commit 9a6da9a79a22e984ee3eec02caa230b66f10e11a.
Diffstat (limited to 'techlibs/achronix/synth_achronix.cc')
-rwxr-xr-x | techlibs/achronix/synth_achronix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/achronix/synth_achronix.cc b/techlibs/achronix/synth_achronix.cc index 3dbf20911..626860d9c 100755 --- a/techlibs/achronix/synth_achronix.cc +++ b/techlibs/achronix/synth_achronix.cc @@ -152,12 +152,12 @@ struct SynthAchronixPass : public ScriptPass { run("clean -purge"); run("setundef -undriven -zero"); if (retime || help_mode) - run("abc -markgroups -dff -D 1", "(only if -retime)"); + run("abc -markgroups -dff", "(only if -retime)"); } if (check_label("map_luts")) { - run("abc -lut 4" + string(retime ? " -dff -D 1" : "")); + run("abc -lut 4" + string(retime ? " -dff" : "")); run("clean"); } |