diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-06-03 23:29:45 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-06-03 23:29:45 -0700 |
commit | 5afa42432f71443e69d1095d17066ae173b7883a (patch) | |
tree | 154c29a28aa5b53afbd41c4f014a1346631ec71e /techlibs | |
parent | 23a73ca6241381e7272f905d1dcbf01c49ad00a8 (diff) | |
download | yosys-5afa42432f71443e69d1095d17066ae173b7883a.tar.gz yosys-5afa42432f71443e69d1095d17066ae173b7883a.tar.bz2 yosys-5afa42432f71443e69d1095d17066ae173b7883a.zip |
Fix pmux2shiftx logic
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 4269870d7..19a19d14e 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -229,7 +229,7 @@ struct SynthXilinxPass : public ScriptPass // cells for identifying variable-length shift registers, // so attempt to convert $pmux-es to the former // Also: wide multiplexer inference benefits from this too - if ((!nosrl && !nomux) || help_mode) + if (!(nosrl && nomux) || help_mode) run("pmux2shiftx", "(skip if '-nosrl' and '-nomux')"); // Run a number of peephole optimisations, including one |