reportClkInfos

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2025-02-23 16:16:02 -07:00
parent 27a4527d00
commit d25c166d57
2 changed files with 2 additions and 1 deletions

View File

@ -128,6 +128,7 @@ ClkInfo::asString(const StaState *sta) const
result += "/";
result += std::to_string(path_ap_index_);
result += " ";
if (clk_edge_)
result += clk_edge_->name();
else

View File

@ -2966,7 +2966,7 @@ Search::reportClkInfos() const
clk_infos.push_back(clk_info);
sort(clk_infos, ClkInfoLess(this));
for (ClkInfo *clk_info : clk_infos)
report_->reportLine("ClkInfo %s", clk_info->asString(this));
report_->reportLine("%s", clk_info->asString(this));
report_->reportLine("%zu clk infos", clk_info_set_->size());
}