mirror of
https://github.com/verilator/verilator.git
synced 2026-09-02 02:38:15 +02:00
Fix UNDRIVEN warning seg fault (#3989)
This commit is contained in:
committed by
Wilson Snyder
parent
3fc684359a
commit
12728bc478
+2
-1
@@ -408,7 +408,8 @@ private:
|
||||
}
|
||||
if (entryp->isDrivenWhole() && !m_inBBox && !VN_IS(nodep, VarXRef)
|
||||
&& !VN_IS(nodep->dtypep()->skipRefp(), UnpackArrayDType)
|
||||
&& nodep->fileline() != entryp->getNodeFileLinep() && !entryp->isUnderGen()) {
|
||||
&& nodep->fileline() != entryp->getNodeFileLinep() && !entryp->isUnderGen()
|
||||
&& entryp->getNodep()) {
|
||||
if (m_alwaysCombp
|
||||
&& (!entryp->isDrivenAlwaysCombWhole()
|
||||
|| (entryp->isDrivenAlwaysCombWhole()
|
||||
|
||||
Reference in New Issue
Block a user