mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-24 19:06:22 +00:00
equiv_opt: -async2sync does formalff -clk2ff as well
This commit is contained in:
parent
2e6d112a2d
commit
e30d24f98b
1 changed files with 3 additions and 1 deletions
|
|
@ -189,8 +189,10 @@ struct EquivOptPass:public ScriptPass
|
||||||
if (check_label("prove")) {
|
if (check_label("prove")) {
|
||||||
if (multiclock || help_mode)
|
if (multiclock || help_mode)
|
||||||
run("clk2fflogic", "(only with -multiclock)");
|
run("clk2fflogic", "(only with -multiclock)");
|
||||||
if (async2sync || help_mode)
|
if (async2sync || help_mode) {
|
||||||
run("async2sync", " (only with -async2sync)");
|
run("async2sync", " (only with -async2sync)");
|
||||||
|
run("formalff -clk2ff", " (only with -async2sync)");
|
||||||
|
}
|
||||||
string opts;
|
string opts;
|
||||||
if (help_mode)
|
if (help_mode)
|
||||||
opts = " -blacklist <filename> ...";
|
opts = " -blacklist <filename> ...";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue