aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/ice40
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-05-01 18:09:38 -0700
committerEddie Hung <eddie@fpgeh.com>2019-05-01 18:09:38 -0700
commit31ff0d8ef529a1ddfa37e4b68017e4e433399da7 (patch)
tree921a3a801a4e7bc9d8998b0aa7f21506db7881e6 /techlibs/ice40
parente97178a888cebc6acacb8f8f2c68d4f9743a9284 (diff)
parentf86d153cef724af9d30e4139783a7e14d7ba0a19 (diff)
downloadyosys-31ff0d8ef529a1ddfa37e4b68017e4e433399da7.tar.gz
yosys-31ff0d8ef529a1ddfa37e4b68017e4e433399da7.tar.bz2
yosys-31ff0d8ef529a1ddfa37e4b68017e4e433399da7.zip
Merge remote-tracking branch 'origin/master' into eddie/synth_xilinx_fine
Diffstat (limited to 'techlibs/ice40')
-rw-r--r--techlibs/ice40/synth_ice40.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/techlibs/ice40/synth_ice40.cc b/techlibs/ice40/synth_ice40.cc
index 8899bfcc4..5de33110a 100644
--- a/techlibs/ice40/synth_ice40.cc
+++ b/techlibs/ice40/synth_ice40.cc
@@ -225,11 +225,13 @@ struct SynthIce40Pass : public ScriptPass
run("proc");
}
- if (flatten && check_label("flatten", "(unless -noflatten)"))
+ if (check_label("flatten", "(unless -noflatten)"))
{
- run("flatten");
- run("tribuf -logic");
- run("deminout");
+ if (flatten) {
+ run("flatten");
+ run("tribuf -logic");
+ run("deminout");
+ }
}
if (check_label("coarse"))