3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 14:13:23 +00:00

Renamed opt_rmunused to opt_clean

This commit is contained in:
Clifford Wolf 2013-06-05 07:07:31 +02:00
parent 29d6ebd961
commit c32b918681
7 changed files with 17 additions and 17 deletions

View file

@ -45,7 +45,7 @@ struct OptPass : public Pass {
log(" opt_reduce\n");
log(" opt_share\n");
log(" opt_rmdff\n");
log(" opt_rmunused\n");
log(" opt_clean\n");
log(" opt_const\n");
log(" while [changed design]\n");
log("\n");
@ -68,7 +68,7 @@ struct OptPass : public Pass {
Pass::call(design, "opt_reduce");
Pass::call(design, "opt_share");
Pass::call(design, "opt_rmdff");
Pass::call(design, "opt_rmunused");
Pass::call(design, "opt_clean");
Pass::call(design, "opt_const");
if (OPT_DID_SOMETHING == false)
break;