Remove the footprint check from equivCells

Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
This commit is contained in:
Matt Liberty 2024-09-12 22:07:58 +00:00
parent bd13bc409e
commit e45bc835f9
2 changed files with 1 additions and 13 deletions

View File

@ -73,8 +73,4 @@ bool
equivCellSequentials(const LibertyCell *cell1,
const LibertyCell *cell2);
bool
equivCellFootprints(const LibertyCell *cell1,
const LibertyCell *cell2);
} // namespace

View File

@ -325,8 +325,7 @@ equivCells(const LibertyCell *cell1,
&& equivCellPgPorts(cell1, cell2)
&& equivCellSequentials(cell1, cell2)
&& equivCellStatetables(cell1, cell2)
&& equivCellTimingArcSets(cell1, cell2)
&& equivCellFootprints(cell1, cell2);
&& equivCellTimingArcSets(cell1, cell2);
}
bool
@ -526,11 +525,4 @@ equivCellTimingArcSets(const LibertyCell *cell1,
}
}
bool
equivCellFootprints(const LibertyCell *cell1,
const LibertyCell *cell2)
{
return stringEqIf(cell1->footprint(), cell2->footprint());
}
} // namespace