Skip to content

Commit

Permalink
Leave in all projin_nentries_* ports.
Browse files Browse the repository at this point in the history
  • Loading branch information
aehart committed Nov 26, 2024
1 parent d80ac4c commit d123b9c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion IntegrationTests/common/script/trim_dangling_ports.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ def getDanglingPorts():
if "is left dangling" not in line:
continue
portName = line.split()[4].split("/")[1][0:-1]
danglingPorts.append(portName)

# FIXME: A subset of the projin_nentries_* ports of the MPs are marked as
# dangling, and it is unclear why these particular subsets would be
# dangling. For now, they are left in the designs.
if not portName.startswith("projin_nentries_"):
danglingPorts.append(portName)

return (topFunction, danglingPorts)

def trimVHDLFile(fileName):
Expand Down

0 comments on commit d123b9c

Please sign in to comment.