summaryrefslogtreecommitdiff
path: root/passes
diff options
context:
space:
mode:
authorLarry Doolittle <ldoolitt@recycle.lbl.gov>2015-08-14 13:23:01 -0700
committerClifford Wolf <clifford@clifford.at>2015-08-14 23:27:05 +0200
commit6c00704a5ef09be46b1f05e2be477e493f37dd38 (patch)
treea64fb142c62fd5cd49a9928b5125ea4e133f4471 /passes
parent022f570563d8b067e9638bc91bbd168f4c5cb817 (diff)
Another block of spelling fixes
Smaller this time
Diffstat (limited to 'passes')
-rw-r--r--passes/cmds/select.cc6
-rw-r--r--passes/techmap/techmap.cc2
2 files changed, 4 insertions, 4 deletions
diff --git a/passes/cmds/select.cc b/passes/cmds/select.cc
index f18e4022..d05000eb 100644
--- a/passes/cmds/select.cc
+++ b/passes/cmds/select.cc
@@ -1321,7 +1321,7 @@ struct SelectPass : public Pass {
log_cmd_error("No selection to check.\n");
work_stack.back().optimize(design);
if (!work_stack.back().empty())
- log_error("Assertation failed: selection is not empty:%s\n", sel_str.c_str());
+ log_error("Assertion failed: selection is not empty:%s\n", sel_str.c_str());
return;
}
@@ -1331,7 +1331,7 @@ struct SelectPass : public Pass {
log_cmd_error("No selection to check.\n");
work_stack.back().optimize(design);
if (work_stack.back().empty())
- log_error("Assertation failed: selection is empty:%s\n", sel_str.c_str());
+ log_error("Assertion failed: selection is empty:%s\n", sel_str.c_str());
return;
}
@@ -1358,7 +1358,7 @@ struct SelectPass : public Pass {
total_count++;
}
if (assert_count != total_count)
- log_error("Assertation failed: selection contains %d elements instead of the asserted %d:%s\n",
+ log_error("Assertion failed: selection contains %d elements instead of the asserted %d:%s\n",
total_count, assert_count, sel_str.c_str());
return;
}
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index 8ba02831..30a6d784 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -1102,7 +1102,7 @@ struct FlattenPass : public Pass {
log("pass is very similar to the 'techmap' pass. The only difference is that this\n");
log("pass is using the current design as mapping library.\n");
log("\n");
- log("Cells and/or modules with the 'keep_hiearchy' attribute set will not be\n");
+ log("Cells and/or modules with the 'keep_hierarchy' attribute set will not be\n");
log("flattened by this command.\n");
log("\n");
}