diff --git a/liberty/EquivCells.cc b/liberty/EquivCells.cc index 64a2ff4b..7b392f60 100644 --- a/liberty/EquivCells.cc +++ b/liberty/EquivCells.cc @@ -92,8 +92,7 @@ EquivCells::findEquivCells(const LibertyLibrary *library, LibertyCellIterator cell_iter(library); while (cell_iter.hasNext()) { LibertyCell *cell = cell_iter.next(); - if (!cell->dontUse() - && !stringBeginEqual(cell->name(), "DLY")) { + if (!cell->dontUse()) { unsigned hash = hashCell(cell); LibertyCellSeq *matches = hash_matches.findKey(hash); if (matches) {