Skip to content

Commit 75e8481

Browse files
committed
oops
1 parent d9dc18c commit 75e8481

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/fasm/src/fasm.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -639,9 +639,9 @@ void FasmWriterVisitor::walk_routing() {
639639
auto& route_ctx = g_vpr_ctx.mutable_routing();
640640
const auto& device_ctx = g_vpr_ctx.device();
641641

642-
for(const auto &root : route_ctx.route_trees) {
643-
if (!root) continue;
644-
walk_route_tree(device_ctx.rr_graph_builder, root.value());
642+
for(const auto &tree : route_ctx.route_trees) {
643+
if (!tree) continue;
644+
walk_route_tree(device_ctx.rr_graph_builder, tree.value().root);
645645
}
646646
}
647647

0 commit comments

Comments
 (0)