check cap/slew/fanout pocv compile issue
This commit is contained in:
parent
2e8f0035dc
commit
66c97a2579
|
|
@ -233,7 +233,7 @@ CheckCapacitanceLimits::checkCapacitanceLimits(Net *net,
|
|||
{
|
||||
const Network *network = sta_->network();
|
||||
PinSeq *cap_pins = new PinSeq;
|
||||
Slack min_slack = MinMax::min()->initValue();
|
||||
float min_slack = MinMax::min()->initValue();
|
||||
if (net) {
|
||||
NetPinIterator *pin_iter = network->pinIterator(net);
|
||||
while (pin_iter->hasNext()) {
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ CheckFanoutLimits::checkFanoutLimits(Net *net,
|
|||
{
|
||||
const Network *network = sta_->network();
|
||||
PinSeq *fanout_pins = new PinSeq;
|
||||
Slack min_slack = MinMax::min()->initValue();
|
||||
float min_slack = MinMax::min()->initValue();
|
||||
if (net) {
|
||||
NetPinIterator *pin_iter = network->pinIterator(net);
|
||||
while (pin_iter->hasNext()) {
|
||||
|
|
|
|||
|
|
@ -290,7 +290,7 @@ CheckSlewLimits::checkSlewLimits(Net *net,
|
|||
{
|
||||
const Network *network = sta_->network();
|
||||
PinSeq *slew_pins = new PinSeq;
|
||||
Slack min_slack = MinMax::min()->initValue();
|
||||
float min_slack = MinMax::min()->initValue();
|
||||
if (net) {
|
||||
NetPinIterator *pin_iter = network->pinIterator(net);
|
||||
while (pin_iter->hasNext()) {
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# regression -help | [-valgrind] [-report_stats] test1 [test2...]
|
||||
# regression -help | [-threads threads] [-valgrind] [-report_stats] test1 [test2...]
|
||||
|
||||
proc regression_main {} {
|
||||
setup
|
||||
|
|
|
|||
Loading…
Reference in New Issue