Modified the handling of substrate ports so that an existing port

number for a substrate port does not get reassigned, which will
cause port ordering issues.
This commit is contained in:
Tim Edwards 2023-05-08 09:51:13 -04:00
parent 79dc621626
commit 44b269e037
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
8.3.397
8.3.398

View File

@ -1263,7 +1263,8 @@ efBuildDevNode(def, name, isSubsNode)
{
/* This node is declared to be an implicit port */
nn->efnn_node->efnode_flags |= EF_SUBS_PORT;
nn->efnn_port = -1;
if (isNewNode == TRUE)
nn->efnn_port = -1;
def->def_flags |= DEF_SUBSNODES;
}
nn->efnn_node->efnode_flags |= EF_SUBS_NODE;