Fix spelling

This commit is contained in:
Wilson Snyder 2024-12-19 21:30:14 -05:00
parent 8a121803f5
commit 9a3dcaa10b
4 changed files with 4 additions and 4 deletions

View File

@ -152,7 +152,7 @@ class V3DfgPeephole final : public DfgVisitor {
// METHODS // METHODS
bool checkApplying(VDfgPeepholePattern id) { bool checkApplying(VDfgPeepholePattern id) {
if (!m_ctx.m_enabled[id]) return false; 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]; ++m_ctx.m_count[id];
return true; return true;
} }

View File

@ -53,7 +53,7 @@ class LinkLValueVisitor final : public VNVisitor {
// as V3LinkLValue runs after V3Param // as V3LinkLValue runs after V3Param
nodep->v3error("Storing to parameter variable " nodep->v3error("Storing to parameter variable "
<< nodep->prettyNameQ() << nodep->prettyNameQ()
<< " in a context that is determed only at runtime"); << " in a context that is determined only at runtime");
} }
if (m_setContinuously) { if (m_setContinuously) {
nodep->varp()->isContinuously(true); nodep->varp()->isContinuously(true);

View File

@ -672,7 +672,7 @@ class WidthVisitor final : public VNVisitor {
void visit(AstDefaultDisable* nodep) override { void visit(AstDefaultDisable* nodep) override {
assertAtStatement(nodep); assertAtStatement(nodep);
// it's like an if() condition. // 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 { void visit(AstDelay* nodep) override {
if (VN_IS(m_procedurep, Final)) { if (VN_IS(m_procedurep, Final)) {

View File

@ -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); 12 | $value$plusargs("S=%s", S);
| ^ | ^
%Error: Exiting due to %Error: Exiting due to