aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2016-03-31 09:56:56 +0200
committerClifford Wolf <clifford@clifford.at>2016-03-31 09:56:56 +0200
commite2f6d61c004776f2f573f3c5b70ad352ce6b4e1a (patch)
tree8424696080a43e23b2c32382cc9fdd00078aeeac /passes
parentec93680bd583b670e03ed98b4b1081eab8d0f3f6 (diff)
downloadyosys-e2f6d61c004776f2f573f3c5b70ad352ce6b4e1a.tar.gz
yosys-e2f6d61c004776f2f573f3c5b70ad352ce6b4e1a.tar.bz2
yosys-e2f6d61c004776f2f573f3c5b70ad352ce6b4e1a.zip
Typo fixes in opt_expr and opt_merge
Diffstat (limited to 'passes')
-rw-r--r--passes/opt/opt_expr.cc2
-rw-r--r--passes/opt/opt_merge.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/passes/opt/opt_expr.cc b/passes/opt/opt_expr.cc
index 09dacf394..9e713935d 100644
--- a/passes/opt/opt_expr.cc
+++ b/passes/opt/opt_expr.cc
@@ -1101,7 +1101,7 @@ struct OptExprPass : public Pass {
bool do_fine = 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();
size_t argidx;
diff --git a/passes/opt/opt_merge.cc b/passes/opt/opt_merge.cc
index fe1ad685a..13b3082fd 100644
--- a/passes/opt/opt_merge.cc
+++ b/passes/opt/opt_merge.cc
@@ -306,7 +306,7 @@ struct OptMergePass : public Pass {
}
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_share_all = false;