mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-16 15:15:38 +00:00
Add check before flatten in synth_*.
This commit is contained in:
parent
16b893bd88
commit
fff034d2f8
20 changed files with 47 additions and 14 deletions
|
|
@ -277,9 +277,10 @@ struct SynthPass : public ScriptPass {
|
|||
|
||||
if (check_label("coarse")) {
|
||||
run("proc");
|
||||
run("check");
|
||||
if (flatten || help_mode)
|
||||
if (flatten || help_mode) {
|
||||
run("check");
|
||||
run("flatten", " (if -flatten)");
|
||||
}
|
||||
run("opt_expr");
|
||||
run("opt_clean");
|
||||
run("check");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue