mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Merge pull request #3569 from YosysHQ/ver_no_rewriters
verific: Ignore errors produced by extension
This commit is contained in:
commit
26aaf7683f
|
@ -2289,6 +2289,7 @@ std::string verific_import(Design *design, const std::map<std::string,std::strin
|
||||||
|
|
||||||
#ifdef YOSYSHQ_VERIFIC_EXTENSIONS
|
#ifdef YOSYSHQ_VERIFIC_EXTENSIONS
|
||||||
VerificExtensions::ElaborateAndRewrite("work", &verific_params);
|
VerificExtensions::ElaborateAndRewrite("work", &verific_params);
|
||||||
|
verific_error_msg.clear();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (top.empty()) {
|
if (top.empty()) {
|
||||||
|
@ -3217,6 +3218,7 @@ struct VerificPass : public Pass {
|
||||||
|
|
||||||
#ifdef YOSYSHQ_VERIFIC_EXTENSIONS
|
#ifdef YOSYSHQ_VERIFIC_EXTENSIONS
|
||||||
VerificExtensions::ElaborateAndRewrite(work, ¶meters);
|
VerificExtensions::ElaborateAndRewrite(work, ¶meters);
|
||||||
|
verific_error_msg.clear();
|
||||||
#endif
|
#endif
|
||||||
if (!ppfile.empty())
|
if (!ppfile.empty())
|
||||||
veri_file::PrettyPrint(ppfile.c_str(), nullptr, work.c_str());
|
veri_file::PrettyPrint(ppfile.c_str(), nullptr, work.c_str());
|
||||||
|
|
Loading…
Reference in a new issue