mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Typo fixes in opt_expr and opt_merge
This commit is contained in:
parent
ec93680bd5
commit
e2f6d61c00
|
@ -1101,7 +1101,7 @@ struct OptExprPass : public Pass {
|
||||||
bool do_fine = false;
|
bool do_fine = false;
|
||||||
bool keepdc = false;
|
bool keepdc = false;
|
||||||
|
|
||||||
log_header("Executing OPT_CONST pass (perform const folding).\n");
|
log_header("Executing OPT_EXPR pass (perform const folding).\n");
|
||||||
log_push();
|
log_push();
|
||||||
|
|
||||||
size_t argidx;
|
size_t argidx;
|
||||||
|
|
|
@ -306,7 +306,7 @@ struct OptMergePass : public Pass {
|
||||||
}
|
}
|
||||||
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
||||||
{
|
{
|
||||||
log_header("Executing OPT_SHARE pass (detect identical cells).\n");
|
log_header("Executing OPT_MERGE pass (detect identical cells).\n");
|
||||||
|
|
||||||
bool mode_nomux = false;
|
bool mode_nomux = false;
|
||||||
bool mode_share_all = false;
|
bool mode_share_all = false;
|
||||||
|
|
Loading…
Reference in a new issue