Corrected a minor error in ext2hier.c where views with no devices

and no ports are still supposed to be output as instances if they
have been marked as abstract views.  Such views were getting output
as cell definitions but not instanced, which although is irrelevant
for simulation, would potentially cause LVS errors.
This commit is contained in:
R. Timothy Edwards 2026-03-05 09:35:28 -05:00
parent 71dc472797
commit 0d9b862c0e
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.614
8.3.615

View File

@ -634,7 +634,7 @@ subcktHierVisit(
if (hasports || is_top)
return subcktVisit(use, hierName, is_top);
else if (def->def_flags & DEF_NODEVICES)
else if ((def->def_flags & DEF_NODEVICES) && (!isStub))
return 0;
else
return subcktVisit(use, hierName, is_top);