aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.h
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-08-31 07:38:47 +0100
committerGitHub <noreply@github.com>2020-08-31 07:38:47 +0100
commit4512a9de19751916c466ed12a2ba4dce958d77bc (patch)
treedbc7a35e1d32e9d4bef5142a9091e3f752b814b0 /common/nextpnr.h
parentf6d436d58b8206aabe287325fc80da5521ed2e75 (diff)
parentc30cadd19caf16edebdc676e17d9f6280ef59361 (diff)
downloadnextpnr-4512a9de19751916c466ed12a2ba4dce958d77bc.tar.gz
nextpnr-4512a9de19751916c466ed12a2ba4dce958d77bc.tar.bz2
nextpnr-4512a9de19751916c466ed12a2ba4dce958d77bc.zip
Merge pull request #494 from rschlaikjer/rschlaikjer-print-sources-in-time-report
Add option to print critical path source code
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r--common/nextpnr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index 4d481d06..f9376fea 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -861,6 +861,9 @@ struct Context : Arch, DeterministicRNG
bool debug = false;
bool force = false;
+ // Should we disable printing of the location of nets in the critical path?
+ bool disable_critical_path_source_print = false;
+
Context(ArchArgs args) : Arch(args) {}
// --------------------------------------------------------------