Skip to content

Commit 2334819

Browse files
fix compilation error in build_scatter_gather.cpp
1 parent 1a5fab8 commit 2334819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vpr/src/route/rr_graph_generation/build_scatter_gathers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ std::vector<t_bottleneck_link> alloc_and_load_scatter_gather_connections(const s
210210
scatter_loc.y = gather_loc.y + sg_link.y_offset;
211211
scatter_loc.layer_num = gather_loc.layer_num + sg_link.z_offset;
212212

213-
const std::vector<t_segment_inf> segment_inf& = (sg_link.x_offset != 0) ? segment_inf_x :
213+
const std::vector<t_segment_inf>& segment_inf = (sg_link.x_offset != 0) ? segment_inf_x :
214214
(sg_link.y_offset != 0) ? segment_inf_y : segment_inf_z;
215215

216216
const e_rr_type chan_type = (sg_link.x_offset != 0) ? e_rr_type::CHANX :

0 commit comments

Comments
 (0)