Rename Verilator Config Files to Verilator Control Files.

Avoids conflict with IEEE `config`.  No functional change intended.
This commit is contained in:
Wilson Snyder
2025-06-27 20:38:01 -04:00
parent 73696f0a71
commit 3defaf8ffb
19 changed files with 253 additions and 252 deletions
+2 -2
View File
@@ -24,7 +24,7 @@
#include "V3TraceDecl.h"
#include "V3Config.h"
#include "V3Control.h"
#include "V3EmitCBase.h"
#include "V3Stats.h"
@@ -184,7 +184,7 @@ class TraceDeclVisitor final : public VNVisitor {
if (!prettyName.empty() && prettyName[0] == '_') return "Leading underscore";
if (prettyName.find("._") != string::npos) return "Inlined leading underscore";
}
if (!V3Config::getScopeTraceOn(prettyName)) return "Vlt scope trace_off";
if (!V3Control::getScopeTraceOn(prettyName)) return "Vlt scope trace_off";
}
return nullptr;
}