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'
|
<< nodep->prettyNameQ() << '\n'
|
||||||
<< (ansiWarn ? nodep->warnMore()
|
<< (ansiWarn ? nodep->warnMore()
|
||||||
+ "... note: ANSI ports must have"
|
+ "... note: ANSI ports must have"
|
||||||
" type declared with the I/O (IEEE "
|
" type declared with the I/O"
|
||||||
"1800-2017 23.2.2.2)\n"
|
" (IEEE 1800-2017 23.2.2.2)\n"
|
||||||
: "")
|
: "")
|
||||||
<< nodep->warnContextPrimary() << '\n'
|
<< nodep->warnContextPrimary() << '\n'
|
||||||
<< findvarp->warnOther()
|
<< findvarp->warnOther()
|
||||||
|
|
|
||||||
|
|
@ -119,8 +119,8 @@ private:
|
||||||
nodep->v3warn(E_UNSUPPORTED, "Unsupported: " << nodep->prettyNameQ());
|
nodep->v3warn(E_UNSUPPORTED, "Unsupported: " << nodep->prettyNameQ());
|
||||||
} else if (nodep->name() == "randomize") {
|
} else if (nodep->name() == "randomize") {
|
||||||
nodep->v3error(nodep->prettyNameQ()
|
nodep->v3error(nodep->prettyNameQ()
|
||||||
<< " is a predefined class method; redefinition not allowed (IEEE "
|
<< " is a predefined class method; redefinition not allowed"
|
||||||
"1800-2017 18.6.3)");
|
" (IEEE 1800-2017 18.6.3)");
|
||||||
}
|
}
|
||||||
nodep->classMethod(true);
|
nodep->classMethod(true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -683,8 +683,8 @@ private:
|
||||||
uint32_t times = constp->toUInt();
|
uint32_t times = constp->toUInt();
|
||||||
if (times == 0
|
if (times == 0
|
||||||
&& !VN_IS(nodep->backp(), Concat)) { // Concat Visitor will clean it up.
|
&& !VN_IS(nodep->backp(), Concat)) { // Concat Visitor will clean it up.
|
||||||
nodep->v3error("Replication value of 0 is only legal under a concatenation (IEEE "
|
nodep->v3error("Replication value of 0 is only legal under a concatenation"
|
||||||
"1800-2017 11.4.12.1)");
|
" (IEEE 1800-2017 11.4.12.1)");
|
||||||
times = 1;
|
times = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -743,8 +743,8 @@ private:
|
||||||
const uint32_t times = constp->toUInt();
|
const uint32_t times = constp->toUInt();
|
||||||
if (times == 0
|
if (times == 0
|
||||||
&& !VN_IS(nodep->backp(), Concat)) { // Concat Visitor will clean it up.
|
&& !VN_IS(nodep->backp(), Concat)) { // Concat Visitor will clean it up.
|
||||||
nodep->v3error("Replication value of 0 is only legal under a concatenation (IEEE "
|
nodep->v3error("Replication value of 0 is only legal under a concatenation"
|
||||||
"1800-2017 11.4.12.1)");
|
" (IEEE 1800-2017 11.4.12.1)");
|
||||||
}
|
}
|
||||||
nodep->dtypeSetString();
|
nodep->dtypeSetString();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue