mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-04 16:10:51 +00:00
avoid merging formal properties
This commit is contained in:
parent
49feaa1146
commit
45d654e2d7
4 changed files with 26 additions and 1 deletions
|
|
@ -1846,7 +1846,10 @@ struct VerificSvaImporter
|
|||
if (mode_assume) c = module->addAssume(root_name, sig_a_q, sig_en_q);
|
||||
if (mode_cover) c = module->addCover(root_name, sig_a_q, sig_en_q);
|
||||
|
||||
if (c) importer->import_attributes(c->attributes, root);
|
||||
if (c) {
|
||||
c->set_bool_attribute(ID(keep));
|
||||
importer->import_attributes(c->attributes, root);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (ParserErrorException)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue