report_checks -from {clk inst}

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2023-06-28 18:09:23 -07:00
parent ef43ee9a45
commit 8ed0b258bc
1 changed files with 3 additions and 1 deletions

View File

@ -4170,7 +4170,9 @@ Sdc::addException(ExceptionPath *exception)
ExceptionFrom *from = exception->from();
if (from
&& (from->hasPins() || from->hasInstances())
&& from->hasClocks()) {
&& from->hasClocks()
// There is only one filter so there are no competing priorities.
&& !exception->isFilter()) {
PinSet *pins1 = from->pins() ? new PinSet(*from->pins()) : nullptr;
InstanceSet *insts1 =
from->instances() ? new InstanceSet(*from->instances()) : nullptr;