Skip to content

Commit f5bb0eb

Browse files
committed
[vpr][pack] fix parameter shadowing
1 parent cffeaa1 commit f5bb0eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vpr/src/pack/cluster_router.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -619,8 +619,8 @@ static void load_trace_to_pb_route(t_pb_routes& pb_route,
619619
VTR_ASSERT(pb_route[cur_pin_id].atom_net_id == net_id);
620620
}
621621
}
622-
for (const auto& trace : trace->next_nodes) {
623-
load_trace_to_pb_route(pb_route, net_id, cur_pin_id, &trace, logic_block_type, intra_lb_pb_pin_lookup);
622+
for (const auto& nxt_trace : trace->next_nodes) {
623+
load_trace_to_pb_route(pb_route, net_id, cur_pin_id, &nxt_trace, logic_block_type, intra_lb_pb_pin_lookup);
624624
}
625625
}
626626

0 commit comments

Comments
 (0)