From 2e8d6ec0b06b4e51e222c15c8049130bc264ae57 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Fri, 7 Feb 2020 12:45:07 -0800 Subject: [PATCH] Remove unnecessary comma --- techlibs/xilinx/synth_xilinx.cc | 5 ++--- 1 file 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 , ('-widemux' only)"); - } + if (help_mode) + run("muxcover ('-widemux' only)"); else if (widemux > 0) { constexpr int cost_mux2 = 100; std::string muxcover_args = stringf(" -nodecode -mux2=%d", cost_mux2); -- 2.30.2