From ed9f69acca2a22b05b5c56df0bad182a200440bb Mon Sep 17 00:00:00 2001 From: James Cherry Date: Mon, 8 Jun 2020 16:21:31 -0700 Subject: [PATCH] report min_period Period -> period --- search/CheckFanoutLimits.cc | 2 ++ search/ReportPath.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/search/CheckFanoutLimits.cc b/search/CheckFanoutLimits.cc index 00550cd9..93f5e3ba 100644 --- a/search/CheckFanoutLimits.cc +++ b/search/CheckFanoutLimits.cc @@ -83,6 +83,8 @@ CheckFanoutLimits::init(const MinMax *min_max) top_limit, top_limit_exists); top_limit_= top_limit; top_limit_exists_ = top_limit_exists; + if (top_limit_exists_) + printf("luse\n"); } void diff --git a/search/ReportPath.cc b/search/ReportPath.cc index d13eb4d4..fc8424ae 100644 --- a/search/ReportPath.cc +++ b/search/ReportPath.cc @@ -1367,7 +1367,7 @@ ReportPath::reportVerbose(MinPeriodCheck *check, string &result) result += pin_name; reportEndOfLine(result); - reportLine("Period", check->period(), EarlyLate::early(), result); + reportLine("period", check->period(), EarlyLate::early(), result); reportLine("min period", -check->minPeriod(this), EarlyLate::early(), result); reportDashLine(result);