Skip to content

Commit

Permalink
Simplify if
Browse files Browse the repository at this point in the history
Signed-off-by: Eddie Hung <eddie.hung@amd.com>
  • Loading branch information
eddieh-xlnx committed Nov 13, 2024
1 parent 7b190bf commit e877503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/xilinx/rapidwright/rwroute/RouteNodeInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private static RouteNodeType getType(Node node, Tile endTile, RouteNodeGraph rou
case NODE_CLE_BNODE: // CLE_BC_CORE*.BNODE_OUTS_[EW]* (Versal only)
case NODE_INTF_BNODE: // INTF_[LR]OCF_[TB][LR]_TILE.IF_INT_BNODE_OUTS* (Versal only)
case NODE_INTF_CNODE: // INTF_[LR]OCF_[TB][LR]_TILE.IF_INT_CNODE_OUTS* (Versal only)
if (routingGraph != null && routingGraph.eastWestWires != null) {
if (routingGraph != null) {
BitSet[] eastWestWires = routingGraph.eastWestWires.get(tileTypeEnum);
if (eastWestWires[0].get(node.getWireIndex())) {
return RouteNodeType.LOCAL_EAST;
Expand Down

0 comments on commit e877503

Please sign in to comment.