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/intel/synth_intel.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/intel/synth_intel.cc')
-rw-r--r-- | techlibs/intel/synth_intel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/intel/synth_intel.cc b/techlibs/intel/synth_intel.cc index d74f295ec..0f1d7a7b5 100644 --- a/techlibs/intel/synth_intel.cc +++ b/techlibs/intel/synth_intel.cc @@ -131,8 +131,8 @@ struct SynthIntelPass : public ScriptPass { nobram = true; continue; } - if (args[argidx] == "-flatten") { - flatten = true; + if (args[argidx] == "-noflatten") { + flatten = false; continue; } if (args[argidx] == "-retime") { |