We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ba6fb3 commit fd67f26Copy full SHA for fd67f26
src/com/xilinx/rapidwright/gui/SchematicScene.java
@@ -621,7 +621,9 @@ private void createExpandedCellInnerPorts(EDIFHierCellInst inst) {
621
// Map the inner port inst to the outer one so nets are aligned
622
if (outerElkPort != null) {
623
EDIFPortInst innerPortInst = port.getInternalPortInstFromIndex(i);
624
- portInstMap.put(inst.getPortInst(innerPortInst.getName()), outerElkPort);
+ if (innerPortInst != null) {
625
+ portInstMap.put(inst.getPortInst(innerPortInst.getName()), outerElkPort);
626
+ }
627
}
628
629
0 commit comments