reportClkInfos
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
27a4527d00
commit
d25c166d57
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue