Skip to content

Commit dfdf3c9

Browse files
authored
Merge pull request #2604 from AlexandreSinger/feature-remove-unreachable-code
[Route] Removed Unreachable Code
2 parents 14253d2 + 4fcf92a commit dfdf3c9

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

vpr/src/route/connection_router.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,6 @@ std::tuple<bool, t_heap*> ConnectionRouter<Heap>::timing_driven_route_connection
116116
return std::make_tuple(true, nullptr);
117117
}
118118

119-
if (cheapest == nullptr) {
120-
VTR_LOG("%s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str());
121-
return std::make_tuple(false, nullptr);
122-
}
123-
124119
return std::make_tuple(false, cheapest);
125120
}
126121

0 commit comments

Comments
 (0)