File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -534,23 +534,23 @@ GraphDelayCalc::seedLoadSlew(Vertex *vertex)
534534 const Sdc *sdc = scene->sdc ();
535535 for (const MinMax *min_max : MinMax::range ()) {
536536 DcalcAPIndex ap_index = scene->dcalcAnalysisPtIndex (min_max);
537- for (const RiseFall *rf : RiseFall::range ()) {
537+ for (const RiseFall *rf : RiseFall::range ()) {
538538 ClockSet *clks = sdc->findLeafPinClocks (pin);
539539 if (!vertex->slewAnnotated (rf, min_max)) {
540- float slew = 0.0 ;
541- if (clks) {
540+ float slew = 0.0 ;
541+ if (clks) {
542542 slew = min_max->initValue ();
543543 for (Clock *clk : *clks) {
544544 float clk_slew = clk->slew (rf, min_max);
545545 if (min_max->compare (clk_slew, slew))
546- slew = clk_slew;
547- }
548- }
549- graph_->setSlew (vertex, rf, ap_index, slew);
546+ slew = clk_slew;
547+ }
548+ }
549+ graph_->setSlew (vertex, rf, ap_index, slew);
550+ }
550551 }
551552 }
552553 }
553- }
554554}
555555
556556// If a driving cell does not specify a -from_pin, the first port
You can’t perform that action at this time.
0 commit comments