Skip to content

Commit 45d7414

Browse files
committed
Correct puts to report_puts in report_metrics.tcl
Signed-off-by: Matt Liberty <[email protected]>
1 parent 67bd910 commit 45d7414

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flow/scripts/report_metrics.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ proc report_metrics { stage when {include_erc true} {include_clock_skew true} }
8282
report_puts "\n=========================================================================="
8383
report_puts "$when max_slew_check_slack_limit"
8484
report_puts "--------------------------------------------------------------------------"
85-
puts [format "%.4f" [sta::max_slew_check_slack_limit]]
85+
report_puts [format "%.4f" [sta::max_slew_check_slack_limit]]
8686
}
8787

8888
report_puts "\n=========================================================================="
@@ -99,7 +99,7 @@ proc report_metrics { stage when {include_erc true} {include_clock_skew true} }
9999
report_puts "\n=========================================================================="
100100
report_puts "$when max_fanout_check_slack_limit"
101101
report_puts "--------------------------------------------------------------------------"
102-
puts [format "%.4f" [sta::max_fanout_check_slack_limit]]
102+
report_puts [format "%.4f" [sta::max_fanout_check_slack_limit]]
103103
}
104104

105105
report_puts "\n=========================================================================="
@@ -116,7 +116,7 @@ proc report_metrics { stage when {include_erc true} {include_clock_skew true} }
116116
report_puts "\n=========================================================================="
117117
report_puts "$when max_capacitance_check_slack_limit"
118118
report_puts "--------------------------------------------------------------------------"
119-
puts [format "%.4f" [sta::max_capacitance_check_slack_limit]]
119+
report_puts [format "%.4f" [sta::max_capacitance_check_slack_limit]]
120120
}
121121

122122
report_puts "\n=========================================================================="

0 commit comments

Comments
 (0)