Consider multi-bit flops as having sequentials. (#419)

This commit is contained in:
Mike Inouye 2026-04-10 10:28:01 -07:00 committed by GitHub
parent b136ba309a
commit d6268da88f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1489,7 +1489,7 @@ LibertyCell::outputPortSequential(LibertyPort *port)
bool
LibertyCell::hasSequentials() const
{
return !sequentials_.empty();
return !sequentials_.empty() || statetable_ != nullptr;
}
void