mirror of
https://github.com/The-OpenROAD-Project/OpenSTA.git
synced 2026-05-30 00:24:12 +08:00
InputDrive::driveCell init from/to_port return values
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
@@ -57,6 +57,7 @@ public:
|
||||
const MinMaxAll *min_max);
|
||||
void driveCell(const RiseFall *rf,
|
||||
const MinMax *min_max,
|
||||
// Return values.
|
||||
LibertyCell *&cell,
|
||||
LibertyPort *&from_port,
|
||||
float *&from_slews,
|
||||
|
||||
@@ -108,6 +108,7 @@ InputDrive::setDriveCell(LibertyLibrary *library,
|
||||
void
|
||||
InputDrive::driveCell(const RiseFall *rf,
|
||||
const MinMax *min_max,
|
||||
// Return values.
|
||||
LibertyCell *&cell,
|
||||
LibertyPort *&from_port,
|
||||
float *&from_slews,
|
||||
@@ -120,8 +121,12 @@ InputDrive::driveCell(const RiseFall *rf,
|
||||
from_slews = drive->fromSlews();
|
||||
to_port = drive->toPort();
|
||||
}
|
||||
else
|
||||
else {
|
||||
cell = nullptr;
|
||||
from_port = nullptr;
|
||||
from_slews = nullptr;
|
||||
to_port = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
InputDriveCell *
|
||||
|
||||
Reference in New Issue
Block a user