Remove the footprint check from equivCells
Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
This commit is contained in:
parent
bd13bc409e
commit
e45bc835f9
|
|
@ -73,8 +73,4 @@ bool
|
|||
equivCellSequentials(const LibertyCell *cell1,
|
||||
const LibertyCell *cell2);
|
||||
|
||||
bool
|
||||
equivCellFootprints(const LibertyCell *cell1,
|
||||
const LibertyCell *cell2);
|
||||
|
||||
} // namespace
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue