Remove unnecessary comma

This commit is contained in:
Eddie Hung 2020-02-07 12:45:07 -08:00
parent be8bc63f84
commit 2e8d6ec0b0
1 changed files with 2 additions and 3 deletions

View File

@ -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);