diff options
author | David Shah <dave@ds0.me> | 2018-11-21 17:13:53 +0000 |
---|---|---|
committer | David Shah <dave@ds0.me> | 2018-11-21 17:13:53 +0000 |
commit | 51d1363dfeb7005ec35a2acd10fe9ae2cd8631d5 (patch) | |
tree | c8f1dccdffc3b9f2dbc9f5c6e719f654849d7a49 /common/timing.h | |
parent | b550791d9279416525d0de48d22989bcf5397535 (diff) | |
download | nextpnr-51d1363dfeb7005ec35a2acd10fe9ae2cd8631d5.tar.gz nextpnr-51d1363dfeb7005ec35a2acd10fe9ae2cd8631d5.tar.bz2 nextpnr-51d1363dfeb7005ec35a2acd10fe9ae2cd8631d5.zip |
Change the log level of some timing-related messages
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common/timing.h')
-rw-r--r-- | common/timing.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/timing.h b/common/timing.h index 1fd76310..42f928dc 100644 --- a/common/timing.h +++ b/common/timing.h @@ -29,7 +29,8 @@ void assign_budget(Context *ctx, bool quiet = false); // Perform timing analysis and print out the fmax, and optionally the // critical path -void timing_analysis(Context *ctx, bool slack_histogram = true, bool print_fmax = true, bool print_path = false); +void timing_analysis(Context *ctx, bool slack_histogram = true, bool print_fmax = true, bool print_path = false, + bool warn_on_failure = false); NEXTPNR_NAMESPACE_END |