One small change to the ext2spice topVisit code to ignore nodes that

have already been output;  i.e., that have EF_PORT set.  However,
since EF_PORT is now set on all implicit ports, it is likely that
this part of the code is no longer exercised at all, and may be
removed.
This commit is contained in:
Tim Edwards 2021-12-06 09:52:59 -05:00
parent bfdf1227a7
commit f68c2c7657
2 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
8.3.237
8.3.238

View File

@ -1869,7 +1869,8 @@ topVisit(def, doStub)
if (sname == NULL) continue;
snode = sname->efnn_node;
if (snode && (snode->efnode_flags & EF_SUBS_PORT))
if (snode && (snode->efnode_flags & EF_SUBS_PORT) &&
!(snode->efnode_flags & EF_PORT))
{
if (snode->efnode_name->efnn_port < 0)
{