Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
wsnyder committed Dec 20, 2024
1 parent 8a12180 commit 9a3dcaa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/V3DfgPeephole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class V3DfgPeephole final : public DfgVisitor {
// METHODS
bool checkApplying(VDfgPeepholePattern id) {
if (!m_ctx.m_enabled[id]) return false;
UINFO(9, "Applying DFG patten " << id.ascii() << endl);
UINFO(9, "Applying DFG pattern " << id.ascii() << endl);
++m_ctx.m_count[id];
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/V3LinkLValue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class LinkLValueVisitor final : public VNVisitor {
// as V3LinkLValue runs after V3Param
nodep->v3error("Storing to parameter variable "
<< nodep->prettyNameQ()
<< " in a context that is determed only at runtime");
<< " in a context that is determined only at runtime");
}
if (m_setContinuously) {
nodep->varp()->isContinuously(true);
Expand Down
2 changes: 1 addition & 1 deletion src/V3Width.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ class WidthVisitor final : public VNVisitor {
void visit(AstDefaultDisable* nodep) override {
assertAtStatement(nodep);
// it's like an if() condition.
iterateCheckBool(nodep, "default disable iff condiftion", nodep->condp(), BOTH);
iterateCheckBool(nodep, "default disable iff condition", nodep->condp(), BOTH);
}
void visit(AstDelay* nodep) override {
if (VN_IS(m_procedurep, Final)) {
Expand Down
2 changes: 1 addition & 1 deletion test_regress/t/t_param_store_bad.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%Error: t/t_param_store_bad.v:12:31: Storing to parameter variable 'S' in a context that is determed only at runtime
%Error: t/t_param_store_bad.v:12:31: Storing to parameter variable 'S' in a context that is determined only at runtime
12 | $value$plusargs("S=%s", S);
| ^
%Error: Exiting due to

0 comments on commit 9a3dcaa

Please sign in to comment.