timing: Fix use of uninitialised value
Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
parent
24ae205f20
commit
315a5733d2
@ -247,7 +247,7 @@ struct TimingAnalyser
|
|||||||
{
|
{
|
||||||
PerDomainPair(ClockDomainPairKey key) : key(key){};
|
PerDomainPair(ClockDomainPairKey key) : key(key){};
|
||||||
ClockDomainPairKey key;
|
ClockDomainPairKey key;
|
||||||
DelayPair period;
|
DelayPair period{0};
|
||||||
delay_t worst_setup_slack, worst_hold_slack;
|
delay_t worst_setup_slack, worst_hold_slack;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user