1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-04-17 00:36:08 +00:00

Merge pull request #717 from YosysHQ/gatecat/timing-memory-fix

timing: Fix use of uninitialised value
This commit is contained in:
gatecat
2021-06-01 12:23:57 +01:00
committed by GitHub

View File

@@ -247,7 +247,7 @@ struct TimingAnalyser
{
PerDomainPair(ClockDomainPairKey key) : key(key){};
ClockDomainPairKey key;
DelayPair period;
DelayPair period{0};
delay_t worst_setup_slack, worst_hold_slack;
};