3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-11 03:33:36 +00:00

Do not call opt -mux_undef (part of -full) before muxcover

This commit is contained in:
Eddie Hung 2019-07-08 23:49:16 -07:00
parent d4ab43d940
commit 45da3ada7b

View file

@ -270,7 +270,11 @@ struct SynthXilinxPass : public ScriptPass
}
if (check_label("fine")) {
run("opt -fast -full");
if (widemux > 0)
run("opt -fast -mux_bool -undriven -fine"); // Necessary to omit -mux_undef otherwise muxcover
// performs less efficiently
else
run("opt -fast -full");
run("memory_map");
run("dffsr2dff");
run("dff2dffe");