diff options
author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-04-11 18:36:51 +0200 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-04-15 16:22:37 +0200 |
commit | 38a0c30d65584335fee3e17f9075711853638ac3 (patch) | |
tree | 755ca0e57e007803dabc023c284d960e4c305d03 /techlibs/sf2 | |
parent | 85166633bc981b02e31167134917fc0b523e8eda (diff) | |
download | yosys-38a0c30d65584335fee3e17f9075711853638ac3.tar.gz yosys-38a0c30d65584335fee3e17f9075711853638ac3.tar.bz2 yosys-38a0c30d65584335fee3e17f9075711853638ac3.zip |
Get rid of dffsr2dff.
This pass is a proper subset of opt_rmdff, which is called by opt, which
is called by every synth flow in the coarse part. Thus, it never
actually does anything and can be safely removed.
Diffstat (limited to 'techlibs/sf2')
-rw-r--r-- | techlibs/sf2/synth_sf2.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/techlibs/sf2/synth_sf2.cc b/techlibs/sf2/synth_sf2.cc index 5efa005c8..34a7e68be 100644 --- a/techlibs/sf2/synth_sf2.cc +++ b/techlibs/sf2/synth_sf2.cc @@ -187,7 +187,6 @@ struct SynthSf2Pass : public ScriptPass if (check_label("map_ffs")) { - run("dffsr2dff"); run("techmap -D NO_LUT -map +/sf2/cells_map.v"); run("opt_expr -mux_undef"); run("simplemap"); |