Merge branch 'master' into magic-8.2
This commit is contained in:
commit
2f00f2a057
|
|
@ -451,7 +451,7 @@ calmaDumpStructure(def, outf, calmaDefHash, filename)
|
|||
chklibname = (char *)DBPropGet(edef, "GDS_FILE", &isReadOnly);
|
||||
|
||||
/* Is the library name the same? */
|
||||
if (isAbstract && !strcmp(filename, chklibname))
|
||||
if (isAbstract && isReadOnly && !strcmp(filename, chklibname))
|
||||
{
|
||||
/* Same library, so keep the cellname and mark the cell */
|
||||
/* as having been written to GDS. */
|
||||
|
|
|
|||
|
|
@ -750,7 +750,16 @@ ResCalculateChildCapacitance(me)
|
|||
for (tptr = me->rn_te; tptr != NULL; tptr = tptr->te_nextt)
|
||||
{
|
||||
dev = tptr->te_thist;
|
||||
t = TiGetType(dev->rd_tile);
|
||||
/* Hack for non-Manhattan geometry. Only one side of a split */
|
||||
/* tile should correspond to a device type. */
|
||||
if (IsSplit(dev->rd_tile))
|
||||
{
|
||||
t = TiGetLeftType(dev->rd_tile);
|
||||
if (ExtCurStyle->exts_device[t] == NULL)
|
||||
t = TiGetRightType(dev->rd_tile);
|
||||
}
|
||||
else
|
||||
t = TiGetType(dev->rd_tile);
|
||||
if (dev->rd_fet_gate == me)
|
||||
{
|
||||
devptr = ExtCurStyle->exts_device[t];
|
||||
|
|
|
|||
Loading…
Reference in New Issue