Skip to content

Commit 5ea7a72

Browse files
authored
Merge pull request #8527 from gadfort/fix-pad-sort
pad: correct use of r -> l to fix pad filler sorting
2 parents 320b89c + 6207bf1 commit 5ea7a72

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/pad/src/ICeWall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ void ICeWall::placeFiller(
11891189
odb::Rect r_bbox;
11901190
r->getPlacementBoundary(r_bbox);
11911191
odb::Rect l_bbox;
1192-
r->getPlacementBoundary(l_bbox);
1192+
l->getPlacementBoundary(l_bbox);
11931193
row_xform.apply(r_bbox);
11941194
row_xform.apply(l_bbox);
11951195
// sort biggest to smallest

src/pad/test/skywater130_caravel.tcl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -760,10 +760,10 @@ place_corners sky130_ef_io__corner_pad
760760

761761
place_io_fill \
762762
-row IO_NORTH \
763-
sky130_ef_io__com_bus_slice_20um \
764-
sky130_ef_io__com_bus_slice_10um \
763+
sky130_ef_io__com_bus_slice_1um \
765764
sky130_ef_io__com_bus_slice_5um \
766-
sky130_ef_io__com_bus_slice_1um
765+
sky130_ef_io__com_bus_slice_20um \
766+
sky130_ef_io__com_bus_slice_10um
767767
place_io_fill \
768768
-row IO_SOUTH \
769769
sky130_ef_io__com_bus_slice_20um \

0 commit comments

Comments
 (0)