3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-20 07:46:31 +00:00
This commit is contained in:
Dhaval 2026-06-19 05:17:30 +00:00 committed by GitHub
commit 243af5ac05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3760,6 +3760,11 @@ struct VerificPass : public Pass {
}
#ifdef VERIFIC_SYSTEMVERILOG_SUPPORT
if (GetSize(args) > argidx && args[argidx] == "-set_relaxed_checking") {
VeriNode::SetRelaxedChecking(1);
continue;
}
if (GetSize(args) > argidx && (args[argidx] == "-f" || args[argidx] == "-F"))
{
unsigned verilog_mode = veri_file::UNDEFINED;