From d6268da88f93f695ee8b427959bd49422276c11f Mon Sep 17 00:00:00 2001 From: Mike Inouye Date: Fri, 10 Apr 2026 10:28:01 -0700 Subject: [PATCH] Consider multi-bit flops as having sequentials. (#419) --- liberty/Liberty.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liberty/Liberty.cc b/liberty/Liberty.cc index 31e17cbe..ae375e21 100644 --- a/liberty/Liberty.cc +++ b/liberty/Liberty.cc @@ -1489,7 +1489,7 @@ LibertyCell::outputPortSequential(LibertyPort *port) bool LibertyCell::hasSequentials() const { - return !sequentials_.empty(); + return !sequentials_.empty() || statetable_ != nullptr; } void