Skip to content

Commit 6cc0ec3

Browse files
committed
Removed unused parameter
Signed-off-by: Ethan Rogers <[email protected]>
1 parent c3e568f commit 6cc0ec3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

vpr/src/route/rr_graph.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ static std::vector<std::vector<bool>> alloc_and_load_perturb_ipins(const int L_n
210210
static void build_rr_sinks_sources(RRGraphBuilder& rr_graph_builder,
211211
const int i,
212212
const int j,
213-
t_rr_graph_storage& L_rr_node,
214213
t_rr_edge_info_set& rr_edges_to_create,
215214
const int delayless_switch,
216215
const DeviceGrid& grid);
@@ -1173,7 +1172,7 @@ static std::function<void(t_chan_width*)> alloc_and_load_rr_graph(RRGraphBuilder
11731172
/* Connection SINKS and SOURCES to their pins. */
11741173
for (size_t i = 0; i < grid.width(); ++i) {
11751174
for (size_t j = 0; j < grid.height(); ++j) {
1176-
build_rr_sinks_sources(rr_graph_builder, i, j, L_rr_node, rr_edges_to_create,
1175+
build_rr_sinks_sources(rr_graph_builder, i, j, rr_edges_to_create,
11771176
delayless_switch, grid);
11781177

11791178
//Create the actual SOURCE->OPIN, IPIN->SINK edges
@@ -1363,7 +1362,6 @@ void free_rr_graph() {
13631362
static void build_rr_sinks_sources(RRGraphBuilder& rr_graph_builder,
13641363
const int i,
13651364
const int j,
1366-
t_rr_graph_storage& L_rr_node,
13671365
t_rr_edge_info_set& rr_edges_to_create,
13681366
const int delayless_switch,
13691367
const DeviceGrid& grid) {

0 commit comments

Comments
 (0)