Skip to content

Commit

Permalink
[core] fixed a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tangxifan committed Mar 7, 2023
1 parent 0fced07 commit c23b8e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openfpga/src/annotation/route_clock_rr_graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ int route_clock_rr_graph(VprRoutingAnnotation& vpr_routing_annotation,
"Route programmable clock network based on routing resource graph");

/* Skip if there is no clock tree */
if (clk_ntwk.num_trees()) {
if (0 == clk_ntwk.num_trees()) {
VTR_LOG(
"Skip due to 0 clock trees.\nDouble check your clock architecture "
"definition if this is unexpected\n");
Expand Down

0 comments on commit c23b8e5

Please sign in to comment.