diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-08-04 10:32:07 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-08-04 10:32:07 +0200 |
commit | 96291f17aac62f9b58370c67e4eeff71adc848c1 (patch) | |
tree | a957f13f0dacfa4ac0066f2f872ed4d06dba7e61 /common/nextpnr.h | |
parent | 8d372b86f3aed86c7a8ef7869e92335bd965c2ae (diff) | |
parent | f5a1b93f0e9348437ece7fb7d46ac69af98536d0 (diff) | |
download | nextpnr-96291f17aac62f9b58370c67e4eeff71adc848c1.tar.gz nextpnr-96291f17aac62f9b58370c67e4eeff71adc848c1.tar.bz2 nextpnr-96291f17aac62f9b58370c67e4eeff71adc848c1.zip |
Merge branch 'master' of github.com:YosysHQ/nextpnr into lutperm
Diffstat (limited to 'common/nextpnr.h')
-rw-r--r-- | common/nextpnr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/nextpnr.h b/common/nextpnr.h index f01173e6..c87a98d9 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -281,7 +281,7 @@ struct CellInfo : ArchCellInfo std::unordered_map<IdString, IdString> pins; // placement constraints - CellInfo *constr_parent; + CellInfo *constr_parent = nullptr; std::vector<CellInfo *> constr_children; const int UNCONSTR = INT_MIN; int constr_x = UNCONSTR; // this.x - parent.x @@ -472,7 +472,7 @@ struct Context : Arch, DeterministicRNG bool force = false; bool timing_driven = true; float target_freq = 12e6; - bool user_freq = false; + bool auto_freq = false; int slack_redist_iter = 0; Context(ArchArgs args) : Arch(args) {} |