Modified possibly incorrect use of DBSrCellDefs in extresist to
ignore internal cells (select, yank, etc.).
This commit is contained in:
parent
6827b13ca3
commit
ec402bd57a
|
|
@ -575,6 +575,9 @@ resSubcircuitFunc(cellDef, rdata)
|
||||||
CellDef *cellDef;
|
CellDef *cellDef;
|
||||||
ResisData *rdata;
|
ResisData *rdata;
|
||||||
{
|
{
|
||||||
|
if ((cellDef->cd_flags & CDINTERNAL) == CDINTERNAL)
|
||||||
|
return 0;
|
||||||
|
|
||||||
if (cellDef != rdata->mainDef)
|
if (cellDef != rdata->mainDef)
|
||||||
if (DBIsSubcircuit(cellDef))
|
if (DBIsSubcircuit(cellDef))
|
||||||
ExtResisForDef(cellDef, rdata);
|
ExtResisForDef(cellDef, rdata);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue