Skip to content

Commit 786dfd9

Browse files
authored
Merge pull request #8364 from The-OpenROAD-Project-staging/rsz-repair-bidir-vertex
rsz: Fix specificity of repair_timing driver check
2 parents 4fa65c3 + 4a4fbf9 commit 786dfd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rsz/src/RepairSetup.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ bool RepairSetup::repairPath(Path* path,
624624
const Path* path = expanded.path(i);
625625
Vertex* path_vertex = path->vertex(sta_);
626626
const Pin* path_pin = path->pin(sta_);
627-
if (i > 0 && network_->isDriver(path_pin)
627+
if (i > 0 && path_vertex->isDriver(network_)
628628
&& !network_->isTopLevelPort(path_pin)) {
629629
const TimingArc* prev_arc = path->prevArc(sta_);
630630
const TimingArc* corner_arc = prev_arc->cornerArc(lib_ap);

0 commit comments

Comments
 (0)