mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Do not optimize away FFs in "prep" and Verific fron-end
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
parent
9a2cf5e3db
commit
3c7122c378
3 changed files with 17 additions and 7 deletions
|
@ -192,7 +192,7 @@ struct PrepPass : public ScriptPass
|
|||
run(nokeepdc ? "opt_expr" : "opt_expr -keepdc");
|
||||
run("opt_clean");
|
||||
run("check");
|
||||
run(nokeepdc ? "opt" : "opt -keepdc");
|
||||
run(nokeepdc ? "opt -noff" : "opt -noff -keepdc");
|
||||
if (!ifxmode) {
|
||||
if (help_mode)
|
||||
run("wreduce -keepdc [-memx]");
|
||||
|
@ -208,7 +208,7 @@ struct PrepPass : public ScriptPass
|
|||
run("opt_clean");
|
||||
run("memory_collect");
|
||||
}
|
||||
run(nokeepdc ? "opt -fast" : "opt -keepdc -fast");
|
||||
run(nokeepdc ? "opt -noff -fast" : "opt -noff -keepdc -fast");
|
||||
}
|
||||
|
||||
if (check_label("check"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue