mirror of https://github.com/YosysHQ/yosys.git
set VERI-1063 explicitly
This commit is contained in:
parent
bfd79845b6
commit
34a64aa322
|
@ -2785,17 +2785,19 @@ struct VerificPass : public Pass {
|
|||
log_abort();
|
||||
|
||||
for (argidx++; argidx < GetSize(args); argidx++) {
|
||||
if (Strings::compare(args[argidx].c_str(), "errors"))
|
||||
if (Strings::compare(args[argidx].c_str(), "errors")) {
|
||||
Message::SetMessageType("VERI-1063", new_type);
|
||||
Message::SetAllMessageType(VERIFIC_ERROR, new_type);
|
||||
else if (Strings::compare(args[argidx].c_str(), "warnings"))
|
||||
} else if (Strings::compare(args[argidx].c_str(), "warnings")) {
|
||||
Message::SetAllMessageType(VERIFIC_WARNING, new_type);
|
||||
else if (Strings::compare(args[argidx].c_str(), "infos"))
|
||||
} else if (Strings::compare(args[argidx].c_str(), "infos")) {
|
||||
Message::SetAllMessageType(VERIFIC_INFO, new_type);
|
||||
else if (Strings::compare(args[argidx].c_str(), "comments"))
|
||||
} else if (Strings::compare(args[argidx].c_str(), "comments")) {
|
||||
Message::SetAllMessageType(VERIFIC_COMMENT, new_type);
|
||||
else
|
||||
} else {
|
||||
Message::SetMessageType(args[argidx].c_str(), new_type);
|
||||
}
|
||||
}
|
||||
goto check_error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue