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:
parent
71dc472797
commit
0d9b862c0e
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue