gcc compile warning
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
984464de01
commit
d315767d00
|
|
@ -837,6 +837,7 @@ protected:
|
|||
void setMinPort(LibertyPort *min);
|
||||
void addScaledPort(OperatingConditions *op_cond,
|
||||
LibertyPort *scaled_port);
|
||||
RiseFallMinMax clkTreeDelays1() const;
|
||||
|
||||
LibertyCell *liberty_cell_;
|
||||
BusDcl *bus_dcl_;
|
||||
|
|
|
|||
|
|
@ -2627,11 +2627,17 @@ LibertyPort::setDriverWaveform(DriverWaveform *driver_waveform,
|
|||
RiseFallMinMax
|
||||
LibertyPort::clockTreePathDelays() const
|
||||
{
|
||||
return clkTreeDelays();
|
||||
return clkTreeDelays1();
|
||||
}
|
||||
|
||||
RiseFallMinMax
|
||||
LibertyPort::clkTreeDelays() const
|
||||
{
|
||||
return clkTreeDelays1();
|
||||
}
|
||||
|
||||
RiseFallMinMax
|
||||
LibertyPort::clkTreeDelays1() const
|
||||
{
|
||||
RiseFallMinMax delays;
|
||||
for (const RiseFall *from_rf : RiseFall::range()) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue