aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/greenpak4
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2020-07-24 13:08:54 +0200
committerMarcelina Koƛcielnicka <mwk@0x04.net>2020-07-31 00:08:15 +0200
commit6cd135a5eb918d30aeaf295e3e9fab9bf73134fb (patch)
tree9eed0a33bb64c46bd3cf0e65fd15c86344dd3e9f /techlibs/greenpak4
parentcf606998847a286a52f01d748372df396b59dd2b (diff)
downloadyosys-6cd135a5eb918d30aeaf295e3e9fab9bf73134fb.tar.gz
yosys-6cd135a5eb918d30aeaf295e3e9fab9bf73134fb.tar.bz2
yosys-6cd135a5eb918d30aeaf295e3e9fab9bf73134fb.zip
opt_expr: Remove -clkinv option, make it the default.
Adds -noclkinv option just in case the old behavior was actually useful to someone.
Diffstat (limited to 'techlibs/greenpak4')
-rw-r--r--techlibs/greenpak4/synth_greenpak4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/greenpak4/synth_greenpak4.cc b/techlibs/greenpak4/synth_greenpak4.cc
index 17b5d4782..d9af340d9 100644
--- a/techlibs/greenpak4/synth_greenpak4.cc
+++ b/techlibs/greenpak4/synth_greenpak4.cc
@@ -162,7 +162,7 @@ struct SynthGreenPAK4Pass : public ScriptPass
run("opt -undriven -fine");
run("techmap -map +/techmap.v -map +/greenpak4/cells_latch.v");
run("dfflibmap -prepare -liberty +/greenpak4/gp_dff.lib");
- run("opt -fast");
+ run("opt -fast -noclkinv -noff");
if (retime || help_mode)
run("abc -dff -D 1", "(only if -retime)");
}