diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-01-04 14:56:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 14:56:04 +0100 |
commit | 7a2db03aa7fc4d290f6c770c86b63a3510598c91 (patch) | |
tree | 41999740eb387054e7e578d6fa610789e9e2d9e7 /techlibs/achronix/synth_achronix.cc | |
parent | f5d23d4c7af33f73b1d9250e458b0932ff7a965b (diff) | |
parent | 3b17c9018acd9d8bee12e653745fb2f00105bd58 (diff) | |
download | yosys-7a2db03aa7fc4d290f6c770c86b63a3510598c91.tar.gz yosys-7a2db03aa7fc4d290f6c770c86b63a3510598c91.tar.bz2 yosys-7a2db03aa7fc4d290f6c770c86b63a3510598c91.zip |
Merge pull request #776 from mmicko/unify_noflatten
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") { |