Internals: Fix some ugly line breaks. No functional change.

This commit is contained in:
Wilson Snyder 2022-11-11 22:33:17 -05:00
parent a427860825
commit 6736e92cdb
3 changed files with 8 additions and 8 deletions

View File

@ -1165,8 +1165,8 @@ class LinkDotFindVisitor final : public VNVisitor {
<< nodep->prettyNameQ() << '\n'
<< (ansiWarn ? nodep->warnMore()
+ "... note: ANSI ports must have"
" type declared with the I/O (IEEE "
"1800-2017 23.2.2.2)\n"
" type declared with the I/O"
" (IEEE 1800-2017 23.2.2.2)\n"
: "")
<< nodep->warnContextPrimary() << '\n'
<< findvarp->warnOther()

View File

@ -119,8 +119,8 @@ private:
nodep->v3warn(E_UNSUPPORTED, "Unsupported: " << nodep->prettyNameQ());
} else if (nodep->name() == "randomize") {
nodep->v3error(nodep->prettyNameQ()
<< " is a predefined class method; redefinition not allowed (IEEE "
"1800-2017 18.6.3)");
<< " is a predefined class method; redefinition not allowed"
" (IEEE 1800-2017 18.6.3)");
}
nodep->classMethod(true);
}

View File

@ -683,8 +683,8 @@ private:
uint32_t times = constp->toUInt();
if (times == 0
&& !VN_IS(nodep->backp(), Concat)) { // Concat Visitor will clean it up.
nodep->v3error("Replication value of 0 is only legal under a concatenation (IEEE "
"1800-2017 11.4.12.1)");
nodep->v3error("Replication value of 0 is only legal under a concatenation"
" (IEEE 1800-2017 11.4.12.1)");
times = 1;
}
@ -743,8 +743,8 @@ private:
const uint32_t times = constp->toUInt();
if (times == 0
&& !VN_IS(nodep->backp(), Concat)) { // Concat Visitor will clean it up.
nodep->v3error("Replication value of 0 is only legal under a concatenation (IEEE "
"1800-2017 11.4.12.1)");
nodep->v3error("Replication value of 0 is only legal under a concatenation"
" (IEEE 1800-2017 11.4.12.1)");
}
nodep->dtypeSetString();
}