mirror of
https://github.com/verilator/verilator.git
synced 2024-12-28 18:27:34 +00:00
Fix spelling
This commit is contained in:
parent
8a121803f5
commit
9a3dcaa10b
@ -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;
|
||||
}
|
||||
|
@ -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);
|
||||
|
@ -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)) {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user