Skip to content

Commit

Permalink
Merge pull request verilog-to-routing#2604 from AlexandreSinger/featu…
Browse files Browse the repository at this point in the history
…re-remove-unreachable-code

[Route] Removed Unreachable Code
  • Loading branch information
vaughnbetz committed Jun 11, 2024
2 parents 14253d2 + 4fcf92a commit dfdf3c9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions vpr/src/route/connection_router.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,6 @@ std::tuple<bool, t_heap*> ConnectionRouter<Heap>::timing_driven_route_connection
return std::make_tuple(true, nullptr);
}

if (cheapest == nullptr) {
VTR_LOG("%s\n", describe_unrouteable_connection(source_node, sink_node, is_flat_).c_str());
return std::make_tuple(false, nullptr);
}

return std::make_tuple(false, cheapest);
}

Expand Down

0 comments on commit dfdf3c9

Please sign in to comment.