aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/intel
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2020-04-11 18:36:51 +0200
committerMarcelina Koƛcielnicka <mwk@0x04.net>2020-04-15 16:22:37 +0200
commit38a0c30d65584335fee3e17f9075711853638ac3 (patch)
tree755ca0e57e007803dabc023c284d960e4c305d03 /techlibs/intel
parent85166633bc981b02e31167134917fc0b523e8eda (diff)
downloadyosys-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/intel')
-rw-r--r--techlibs/intel/synth_intel.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/techlibs/intel/synth_intel.cc b/techlibs/intel/synth_intel.cc
index 3689df70e..8601ebb37 100644
--- a/techlibs/intel/synth_intel.cc
+++ b/techlibs/intel/synth_intel.cc
@@ -202,7 +202,6 @@ struct SynthIntelPass : public ScriptPass {
run("opt -fast -mux_undef -undriven -fine -full");
run("memory_map");
run("opt -undriven -fine");
- run("dffsr2dff");
run("dff2dffe -direct-match $_DFF_*");
run("opt -fine");
run("techmap -map +/techmap.v");