diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2019-01-04 11:37:25 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2019-01-04 11:37:25 +0100 |
commit | 3b17c9018acd9d8bee12e653745fb2f00105bd58 (patch) | |
tree | 947a690b409a3fdcf582951a96a7d04ea537bba4 /techlibs/achronix/synth_achronix.cc | |
parent | d98fe8ce1fbcd5480181ed22d43b850863191033 (diff) | |
download | yosys-3b17c9018acd9d8bee12e653745fb2f00105bd58.tar.gz yosys-3b17c9018acd9d8bee12e653745fb2f00105bd58.tar.bz2 yosys-3b17c9018acd9d8bee12e653745fb2f00105bd58.zip |
Unify usage of noflatten among architectures
Diffstat (limited to 'techlibs/achronix/synth_achronix.cc')
-rwxr-xr-x | techlibs/achronix/synth_achronix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/achronix/synth_achronix.cc b/techlibs/achronix/synth_achronix.cc index 3642e3bd3..626860d9c 100755 --- a/techlibs/achronix/synth_achronix.cc +++ b/techlibs/achronix/synth_achronix.cc @@ -95,8 +95,8 @@ struct SynthAchronixPass : public ScriptPass { run_to = args[argidx].substr(pos+1); continue; } - if (args[argidx] == "-flatten") { - flatten = true; + if (args[argidx] == "-noflatten") { + flatten = false; continue; } if (args[argidx] == "-retime") { |