From 337fab4c441c1d0a255e6ba672f037335cd74041 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Fri, 21 Jun 2019 13:21:37 -0700 Subject: [PATCH] equiv cells dont_use turd --- liberty/EquivCells.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) {