diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-05-02 11:14:28 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-05-02 11:14:28 -0700 |
commit | d05ac7257e437466db0ce7f4c3264d8ad8e18fcd (patch) | |
tree | 7c933da084a4706a56f0f32260316ffe032d894e /techlibs | |
parent | 3b5e8c86a4516c202e877ee5ca154062682e15b9 (diff) | |
download | yosys-d05ac7257e437466db0ce7f4c3264d8ad8e18fcd.tar.gz yosys-d05ac7257e437466db0ce7f4c3264d8ad8e18fcd.tar.bz2 yosys-d05ac7257e437466db0ce7f4c3264d8ad8e18fcd.zip |
Missing help_mode
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 a0e77021a..dd8b51818 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -232,7 +232,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) + if (!nosrl || !nomux || help_mode) run("pmux2shiftx", "(skip if '-nosrl' and '-nomux')"); run("opt -fast -full"); |