mirror of https://github.com/YosysHQ/nextpnr.git
Merge pull request #717 from YosysHQ/gatecat/timing-memory-fix
timing: Fix use of uninitialised value
This commit is contained in:
commit
e5c8214f2c
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue