Skip to content

Commit 61b2a4b

Browse files
committed
indent
Signed-off-by: James Cherry <cherry@parallaxsw.com>
1 parent 5a1b4cb commit 61b2a4b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

dcalc/GraphDelayCalc.cc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)