Merge branch 'master' into netgen-1.5

This commit is contained in:
Tim Edwards 2022-06-15 02:00:50 -04:00
commit d3407b3e56
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
1.5.223
1.5.224

View File

@ -7381,7 +7381,7 @@ int MatchPins(struct nlist *tc1, struct nlist *tc2, int dolist)
/* If there are multiple pins on the same net, cycle through them; */
/* otherwise, move to the next entry in the partition. */
if (ob1->next && (ob1->next->node == ob1->node)) {
if (ob1->next && (ob1->next->type == PORT) && (ob1->next->node == ob1->node)) {
ob1 = ob1->next;
ob2 = tc2->cell; /* Restart search for matching pin */
i++;