mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 11:26:22 +00:00
Merge 2a3804139f into 9d0cdb8551
This commit is contained in:
commit
58f1f72358
3 changed files with 160 additions and 0 deletions
|
|
@ -35,6 +35,8 @@ struct MemoryPass : public Pass {
|
|||
log("\n");
|
||||
log("This pass calls all the other memory_* passes in a useful order:\n");
|
||||
log("\n");
|
||||
log(" opt_mem_merge\n");
|
||||
log(" opt_clean\n");
|
||||
log(" opt_mem\n");
|
||||
log(" opt_mem_priority\n");
|
||||
log(" opt_mem_feedback\n");
|
||||
|
|
@ -105,6 +107,8 @@ struct MemoryPass : public Pass {
|
|||
}
|
||||
extra_args(args, argidx, design);
|
||||
|
||||
Pass::call(design, "opt_mem_merge");
|
||||
Pass::call(design, "opt_clean");
|
||||
Pass::call(design, "opt_mem");
|
||||
Pass::call(design, "opt_mem_priority");
|
||||
Pass::call(design, "opt_mem_feedback");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue