From e66b9b48aa48fee3919440ecd8a4ef805065c778 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Wed, 1 Apr 2026 16:55:40 +0200 Subject: [PATCH] fixup! timinginfo: special-case $specify2 in signorm invariant --- kernel/rtlil_bufnorm.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/rtlil_bufnorm.cc b/kernel/rtlil_bufnorm.cc index e2d0eae9f..63e9c7c46 100644 --- a/kernel/rtlil_bufnorm.cc +++ b/kernel/rtlil_bufnorm.cc @@ -1057,7 +1057,7 @@ void RTLIL::Cell::unsetPort(const RTLIL::IdString& portname) void RTLIL::Cell::setPort(const RTLIL::IdString& portname, RTLIL::SigSpec signal) { bool is_input_port = false; - if (module->sig_norm_index != nullptr && type != ID($specify2)) { + if (module->sig_norm_index != nullptr && type != ID($specify2) && type != ID($specify3) && type != ID($specrule)) { module->sig_norm_index->sigmap.apply(signal); auto dir = port_dir(portname);