mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Remove unnecessary comma
This commit is contained in:
parent
be8bc63f84
commit
2e8d6ec0b0
|
@ -543,9 +543,8 @@ struct SynthXilinxPass : public ScriptPass
|
||||||
|
|
||||||
if (check_label("fine")) {
|
if (check_label("fine")) {
|
||||||
run("dff2dffe -direct-match $_DFF_* -direct-match $__DFFS_*");
|
run("dff2dffe -direct-match $_DFF_* -direct-match $__DFFS_*");
|
||||||
if (help_mode) {
|
if (help_mode)
|
||||||
run("muxcover <internal options>, ('-widemux' only)");
|
run("muxcover <internal options> ('-widemux' only)");
|
||||||
}
|
|
||||||
else if (widemux > 0) {
|
else if (widemux > 0) {
|
||||||
constexpr int cost_mux2 = 100;
|
constexpr int cost_mux2 = 100;
|
||||||
std::string muxcover_args = stringf(" -nodecode -mux2=%d", cost_mux2);
|
std::string muxcover_args = stringf(" -nodecode -mux2=%d", cost_mux2);
|
||||||
|
|
Loading…
Reference in a new issue