diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-02-07 12:45:07 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-02-07 12:45:07 -0800 |
commit | 2e8d6ec0b06b4e51e222c15c8049130bc264ae57 (patch) | |
tree | 47563cad82c14648207017ad86b0e1652c675d48 /techlibs/xilinx/synth_xilinx.cc | |
parent | be8bc63f8443ea0aa2261bbbe4f30de476fa4a61 (diff) | |
download | yosys-2e8d6ec0b06b4e51e222c15c8049130bc264ae57.tar.gz yosys-2e8d6ec0b06b4e51e222c15c8049130bc264ae57.tar.bz2 yosys-2e8d6ec0b06b4e51e222c15c8049130bc264ae57.zip |
Remove unnecessary comma
Diffstat (limited to 'techlibs/xilinx/synth_xilinx.cc')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 556f85a20..a6b422b83 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -543,9 +543,8 @@ struct SynthXilinxPass : public ScriptPass if (check_label("fine")) { run("dff2dffe -direct-match $_DFF_* -direct-match $__DFFS_*"); - if (help_mode) { - run("muxcover <internal options>, ('-widemux' only)"); - } + if (help_mode) + run("muxcover <internal options> ('-widemux' only)"); else if (widemux > 0) { constexpr int cost_mux2 = 100; std::string muxcover_args = stringf(" -nodecode -mux2=%d", cost_mux2); |