mirror of
https://github.com/YosysHQ/yosys
synced 2026-03-23 04:49:15 +00:00
Remove not needed initialization
This commit is contained in:
parent
c5023dce7a
commit
d52cad1ae2
1 changed files with 0 additions and 9 deletions
|
|
@ -4495,10 +4495,6 @@ struct VerificPass : public Pass {
|
|||
|
||||
if (argidx < GetSize(args) && args[argidx] == "-set-reset")
|
||||
{
|
||||
if (!yosys_verific_settings_initialized) {
|
||||
yosys_verific_settings.init();
|
||||
yosys_verific_settings_initialized = true;
|
||||
}
|
||||
yosys_verific_settings.reset();
|
||||
yosys_verific_settings.apply_all();
|
||||
log("All Yosys-Verific settings reset to defaults.\n");
|
||||
|
|
@ -4507,11 +4503,6 @@ struct VerificPass : public Pass {
|
|||
|
||||
if (argidx < GetSize(args) && args[argidx] == "-set")
|
||||
{
|
||||
if (!yosys_verific_settings_initialized) {
|
||||
yosys_verific_settings.init();
|
||||
yosys_verific_settings_initialized = true;
|
||||
}
|
||||
|
||||
// No arguments: list all settings
|
||||
if (argidx+1 == GetSize(args)) {
|
||||
log("Yosys-Verific settings:\n");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue