diff options
author | gatecat <gatecat@ds0.me> | 2021-09-29 15:10:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 15:10:28 +0100 |
commit | bd137a8b50c220b2547030a4618aeefead2a1c38 (patch) | |
tree | e68e2aaafac168b97e25d9962230bf245c7c77a9 /common/router1.cc | |
parent | 8b3e6711bcdab8c59bfa30f5eff8ed0bfa1bc302 (diff) | |
parent | 1db3a87c62acc79de0b3c7bd8c4c155c61c864ee (diff) | |
download | nextpnr-bd137a8b50c220b2547030a4618aeefead2a1c38.tar.gz nextpnr-bd137a8b50c220b2547030a4618aeefead2a1c38.tar.bz2 nextpnr-bd137a8b50c220b2547030a4618aeefead2a1c38.zip |
Merge pull request #810 from antmicro/write-timing-report
Timing report in JSON format
Diffstat (limited to 'common/router1.cc')
-rw-r--r-- | common/router1.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/router1.cc b/common/router1.cc index 5645b898..c8585b0b 100644 --- a/common/router1.cc +++ b/common/router1.cc @@ -874,7 +874,7 @@ bool router1(Context *ctx, const Router1Cfg &cfg) log_info("Checksum: 0x%08x\n", ctx->checksum()); timing_analysis(ctx, true /* slack_histogram */, true /* print_fmax */, true /* print_path */, - true /* warn_on_failure */); + true /* warn_on_failure */, true /* update_results */); return true; } catch (log_execution_error_exception) { |