3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-25 10:05:33 +00:00

Fix verific PRIM_SVA_AT handling in properties with PRIM_SVA_DISABLE_IFF

This commit is contained in:
Clifford Wolf 2018-02-15 15:26:37 +01:00
parent c1abd3b02c
commit bc8ab3ab44
2 changed files with 35 additions and 1 deletions

View file

@ -1350,7 +1350,7 @@ struct VerificSvaPP
return default_net;
}
if (inst->Type() == PRIM_SVA_AT) {
if (inst->Type() == PRIM_SVA_AT || inst->Type() == PRIM_SVA_DISABLE_IFF) {
Net *new_net = rewrite(get_ast_input2(inst));
if (new_net) {
inst->Disconnect(inst->View()->GetInput2());