3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 19:05:52 +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

@ -302,7 +302,7 @@ struct SubmodPass : public Pass {
if (opt_name.empty())
{
Pass::call(design, "opt_rmunused");
Pass::call(design, "opt_clean");
log_header("Continuing SUBMOD pass.\n");
std::set<std::string> handled_modules;
@ -322,7 +322,7 @@ struct SubmodPass : public Pass {
}
}
Pass::call(design, "opt_rmunused");
Pass::call(design, "opt_clean");
}
else
{