forked from github/verilator
Internal line coverage fix
This commit is contained in:
parent
8064b78d4f
commit
24198ef0ed
@ -3157,8 +3157,9 @@ private:
|
||||
if (cextp->childDTypep() || cextp->dtypep()) continue; // Already converted
|
||||
AstClassOrPackageRef* const cpackagerefp
|
||||
= VN_CAST(cextp->classOrPkgsp(), ClassOrPackageRef);
|
||||
if (!cpackagerefp) {
|
||||
cextp->v3error("Attempting to extend using a non-class ");
|
||||
if (VL_UNCOVERABLE(!cpackagerefp)) {
|
||||
// Linking the extend gives an error before this is hit
|
||||
cextp->v3error("Attempting to extend using non-class"); // LCOV_EXCL_LINE
|
||||
} else {
|
||||
VSymEnt* const foundp = m_curSymp->findIdFallback(cpackagerefp->name());
|
||||
bool ok = false;
|
||||
|
@ -44,7 +44,6 @@ foreach my $s (
|
||||
'Assignment pattern with no members',
|
||||
'Assignment pattern with too many elements',
|
||||
'Attempted parameter setting of non-parameter: Param ',
|
||||
'Attempting to extend using a non-class ',
|
||||
'Can\'t find varpin scope of ',
|
||||
'Can\'t resolve module reference: \'',
|
||||
'Cannot mix DPI import, DPI export, class methods, and/or public ',
|
||||
|
Loading…
Reference in New Issue
Block a user