aboutsummaryrefslogtreecommitdiffstats
path: root/common/timing.h
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2018-11-26 09:37:07 +0000
committerGitHub <noreply@github.com>2018-11-26 09:37:07 +0000
commit22ac41d6272e66cf68a7e282e7ffe065ab82c5b8 (patch)
tree576a835841aeb8e93639510248eccd9b472d88ef /common/timing.h
parent98858fe611a149e19e1d679db4a98fe88ff647bc (diff)
parentb035cb9fcf3502c74c769560f02e29adcafe6fd8 (diff)
downloadnextpnr-22ac41d6272e66cf68a7e282e7ffe065ab82c5b8.tar.gz
nextpnr-22ac41d6272e66cf68a7e282e7ffe065ab82c5b8.tar.bz2
nextpnr-22ac41d6272e66cf68a7e282e7ffe065ab82c5b8.zip
Merge pull request #138 from YosysHQ/refactor_log
Tidy up logging code, add log file support, make timing failures non-fatal errors
Diffstat (limited to 'common/timing.h')
-rw-r--r--common/timing.h3
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