mirror of https://github.com/YosysHQ/yosys.git
Do not call opt -mux_undef (part of -full) before muxcover
This commit is contained in:
parent
d4ab43d940
commit
45da3ada7b
|
|
@ -270,7 +270,11 @@ struct SynthXilinxPass : public ScriptPass
|
||||||
}
|
}
|
||||||
|
|
||||||
if (check_label("fine")) {
|
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("memory_map");
|
||||||
run("dffsr2dff");
|
run("dffsr2dff");
|
||||||
run("dff2dffe");
|
run("dff2dffe");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue