diff options
author | gatecat <gatecat@ds0.me> | 2021-04-13 10:34:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 10:34:14 +0100 |
commit | 423da76ff2cd7096c52d8a52c3faf8eae96708b2 (patch) | |
tree | 6de14e20caf23542d7bcb91a7d3e8265a733fa61 /common/timing.h | |
parent | 5cd2a7f9c26dabbbf6e016d9b6108639d29a9417 (diff) | |
parent | ece10c3e0439ded0dfcfd2d0c50120f86a15c597 (diff) | |
download | nextpnr-423da76ff2cd7096c52d8a52c3faf8eae96708b2.tar.gz nextpnr-423da76ff2cd7096c52d8a52c3faf8eae96708b2.tar.bz2 nextpnr-423da76ff2cd7096c52d8a52c3faf8eae96708b2.zip |
Merge pull request #676 from YosysHQ/gatecat/fix-sta-crash
timing: Fix domain init when loops are present
Diffstat (limited to 'common/timing.h')
-rw-r--r-- | common/timing.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/timing.h b/common/timing.h index 63c0fc74..a8615e15 100644 --- a/common/timing.h +++ b/common/timing.h @@ -142,6 +142,8 @@ struct TimingAnalyser bool setup_only = false; bool verbose_mode = false; + bool have_loops = false; + bool updated_domains = false; private: void init_ports(); |