aboutsummaryrefslogtreecommitdiffstats
path: root/common/nextpnr.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r--common/nextpnr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h
index efe5936f..8d4714bf 100644
--- a/common/nextpnr.h
+++ b/common/nextpnr.h
@@ -200,7 +200,7 @@ struct BaseCtx
BaseCtx()
{
- //assert(IdString::global_ctx == nullptr);
+ // assert(IdString::global_ctx == nullptr);
IdString::global_ctx = this;
idstring_str_to_idx = new std::unordered_map<std::string, int>;
@@ -229,6 +229,7 @@ struct Context : Arch
bool verbose = false;
bool debug = false;
bool force = false;
+ bool timing_driven = true;
Context(ArchArgs args) : Arch(args) {}