mirror of
https://github.com/verilator/verilator.git
synced 2025-04-21 12:06:55 +00:00
Internals: Fix some ugly line breaks. No functional change.
This commit is contained in:
parent
a427860825
commit
6736e92cdb
@ -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()
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user