aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ice40/synth_ice40.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-03-31 08:43:28 +0200
committerClifford Wolf <clifford@clifford.at>2016-03-31 08:46:56 +0200
commit1d0f0d668ade740c928c66c400476924abf62384 (patch)
tree8215e3fb7c6fd92a8560217e0840a90a39a620e6 /techlibs/ice40/synth_ice40.cc
parentd31c968d76e99d5c7288d0eb844e041bb36aa77d (diff)
downloadyosys-1d0f0d668ade740c928c66c400476924abf62384.tar.gz
yosys-1d0f0d668ade740c928c66c400476924abf62384.tar.bz2
yosys-1d0f0d668ade740c928c66c400476924abf62384.zip
Renamed opt_const to opt_expr
Diffstat (limited to 'techlibs/ice40/synth_ice40.cc')
-rw-r--r--techlibs/ice40/synth_ice40.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc
index 92d53f4ab..f24d31a8c 100644
--- a/techlibs/ice40/synth_ice40.cc
+++ b/techlibs/ice40/synth_ice40.cc
@@ -106,7 +106,7 @@ struct SynthIce40Pass : public Pass {
log(" dffsr2dff\n");
log(" dff2dffe -direct-match $_DFF_*\n");
log(" techmap -map +/ice40/cells_map.v\n");
- log(" opt_const -mux_undef\n");
+ log(" opt_expr -mux_undef\n");
log(" simplemap\n");
log(" ice40_ffinit\n");
log(" ice40_ffssr\n");
@@ -247,7 +247,7 @@ struct SynthIce40Pass : public Pass {
Pass::call(design, "dffsr2dff");
Pass::call(design, "dff2dffe -direct-match $_DFF_*");
Pass::call(design, "techmap -map +/ice40/cells_map.v");
- Pass::call(design, "opt_const -mux_undef");
+ Pass::call(design, "opt_expr -mux_undef");
Pass::call(design, "simplemap");
Pass::call(design, "ice40_ffinit");
Pass::call(design, "ice40_ffssr");