mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Improve DEFPARAM warning text.
This commit is contained in:
parent
50866e470a
commit
ba1f53a070
@ -69,7 +69,6 @@ The XML document consists of 4 sections within the top level
|
||||
by elements in the ``<module>`` elements using the ``dtype_id``
|
||||
attribute.
|
||||
|
||||
.. __distribution:
|
||||
|
||||
Distribution
|
||||
============
|
||||
|
@ -1392,7 +1392,9 @@ private:
|
||||
}
|
||||
virtual void visit(AstDefParam* nodep) override {
|
||||
iterateChildren(nodep);
|
||||
nodep->v3warn(DEFPARAM, "Suggest replace defparam assignment with Verilog 2001 #(."
|
||||
nodep->v3warn(DEFPARAM, "defparam is deprecated (IEEE 1800-2017 C.4.1)\n"
|
||||
<< nodep->warnMore()
|
||||
<< "... Suggest use instantiation with #(."
|
||||
<< nodep->prettyName() << "(...etc...))");
|
||||
VSymEnt* foundp = m_statep->getNodeSym(nodep)->findIdFallback(nodep->path());
|
||||
AstCell* cellp = foundp ? VN_CAST(foundp->nodep(), Cell) : nullptr;
|
||||
|
@ -1,4 +1,5 @@
|
||||
%Warning-DEFPARAM: t/t_lint_defparam.v:10:19: Suggest replace defparam assignment with Verilog 2001 #(.P(...etc...))
|
||||
%Warning-DEFPARAM: t/t_lint_defparam.v:10:19: defparam is deprecated (IEEE 1800-2017 C.4.1)
|
||||
: ... Suggest use instantiation with #(.P(...etc...))
|
||||
10 | defparam sub.P = 2;
|
||||
| ^
|
||||
... Use "/* verilator lint_off DEFPARAM */" and lint_on around source to disable this message.
|
||||
|
Loading…
Reference in New Issue
Block a user