Skip to content

Commit bbfb7c0

Browse files
typo
1 parent 96eacbe commit bbfb7c0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

vpr/src/route/rr_graph_generation/build_scatter_gathers.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ static std::vector<t_sg_candidate> find_candidate_wires(const std::vector<t_chan
129129
int wire_switchpoint = get_switchpoint_of_wire(chan_type, chan_details[iwire], seg_coord, chan_side);
130130

131131
// Check if this wire belongs to one of the specified switchpoints; add it to our 'wires' vector if so
132-
if (wire_switchpoint != valid_switchpoint) continue;
132+
if (wire_switchpoint != valid_switchpoint) {
133+
continue;
134+
}
133135

134136
candidates.push_back({chan_loc, chan_type, chan_side, {iwire, wire_switchpoint}});
135137
}
@@ -141,7 +143,7 @@ static std::vector<t_sg_candidate> find_candidate_wires(const std::vector<t_chan
141143
}
142144

143145
//
144-
// Non-satatic Function Definitions
146+
// Non-static Function Definitions
145147
//
146148

147149
std::vector<t_bottleneck_link> alloc_and_load_scatter_gather_connections(const std::vector<t_scatter_gather_pattern>& scatter_gather_patterns,

0 commit comments

Comments
 (0)