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
commit e5c8214f2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
};