Corrected an error that can prevent capacitances to substrate from
being output if the substrate node is declared as a port.
This commit is contained in:
parent
11080465ad
commit
d09b0e8c51
|
|
@ -188,7 +188,10 @@ efBuildNode(def, isSubsnode, isDevSubsnode, isExtNode, nodeName, nodeCap,
|
||||||
newnode->efnode_flags |= EF_SUBS_NODE;
|
newnode->efnode_flags |= EF_SUBS_NODE;
|
||||||
|
|
||||||
if (isSubsnode == TRUE)
|
if (isSubsnode == TRUE)
|
||||||
|
{
|
||||||
newnode->efnode_flags |= EF_GLOB_SUBS_NODE;
|
newnode->efnode_flags |= EF_GLOB_SUBS_NODE;
|
||||||
|
EFCompat = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
/* The node is a duplicate port name at a different location. */
|
/* The node is a duplicate port name at a different location. */
|
||||||
/* If EFSaveLocs is TRUE, then save the layer and position in */
|
/* If EFSaveLocs is TRUE, then save the layer and position in */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue