aboutsummaryrefslogtreecommitdiffstats
path: root/common/router1.cc
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-08-03 22:39:25 -0700
committerEddie Hung <eddieh@ece.ubc.ca>2018-08-03 22:39:25 -0700
commitecb264d002cb244578df07cef66acf87719478b9 (patch)
tree73952f7067a97a13527eaa4a0befb5f1441054f3 /common/router1.cc
parent80e6b17ec9da25ff089a626b2fb5043876814307 (diff)
downloadnextpnr-ecb264d002cb244578df07cef66acf87719478b9.tar.gz
nextpnr-ecb264d002cb244578df07cef66acf87719478b9.tar.bz2
nextpnr-ecb264d002cb244578df07cef66acf87719478b9.zip
Refactor timing.cc into Timing class
Diffstat (limited to 'common/router1.cc')
-rw-r--r--common/router1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/router1.cc b/common/router1.cc
index 6e352866..5f51b370 100644
--- a/common/router1.cc
+++ b/common/router1.cc
@@ -933,7 +933,7 @@ bool router1(Context *ctx, const Router1Cfg &cfg)
#ifndef NDEBUG
ctx->check();
#endif
- timing_analysis(ctx, true /* print_fmax */, true /* print_path */);
+ timing_analysis(ctx, true /* print_path */);
ctx->unlock();
return true;
} catch (log_execution_error_exception) {