mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 19:36:21 +00:00
timinginfo: special-case $specify2 in signorm invariant
This commit is contained in:
parent
8ae1d758e2
commit
2dfb691f8b
2 changed files with 4 additions and 5 deletions
|
|
@ -1058,7 +1058,7 @@ void RTLIL::Cell::unsetPort(RTLIL::IdString portname)
|
|||
void RTLIL::Cell::setPort(RTLIL::IdString portname, RTLIL::SigSpec signal)
|
||||
{
|
||||
bool is_input_port = false;
|
||||
if (module->sig_norm_index != nullptr) {
|
||||
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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue