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 setMinPort(LibertyPort *min);
|
||||||
void addScaledPort(OperatingConditions *op_cond,
|
void addScaledPort(OperatingConditions *op_cond,
|
||||||
LibertyPort *scaled_port);
|
LibertyPort *scaled_port);
|
||||||
|
RiseFallMinMax clkTreeDelays1() const;
|
||||||
|
|
||||||
LibertyCell *liberty_cell_;
|
LibertyCell *liberty_cell_;
|
||||||
BusDcl *bus_dcl_;
|
BusDcl *bus_dcl_;
|
||||||
|
|
|
||||||
|
|
@ -2627,11 +2627,17 @@ LibertyPort::setDriverWaveform(DriverWaveform *driver_waveform,
|
||||||
RiseFallMinMax
|
RiseFallMinMax
|
||||||
LibertyPort::clockTreePathDelays() const
|
LibertyPort::clockTreePathDelays() const
|
||||||
{
|
{
|
||||||
return clkTreeDelays();
|
return clkTreeDelays1();
|
||||||
}
|
}
|
||||||
|
|
||||||
RiseFallMinMax
|
RiseFallMinMax
|
||||||
LibertyPort::clkTreeDelays() const
|
LibertyPort::clkTreeDelays() const
|
||||||
|
{
|
||||||
|
return clkTreeDelays1();
|
||||||
|
}
|
||||||
|
|
||||||
|
RiseFallMinMax
|
||||||
|
LibertyPort::clkTreeDelays1() const
|
||||||
{
|
{
|
||||||
RiseFallMinMax delays;
|
RiseFallMinMax delays;
|
||||||
for (const RiseFall *from_rf : RiseFall::range()) {
|
for (const RiseFall *from_rf : RiseFall::range()) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue