mirror of
https://github.com/verilator/verilator.git
synced 2025-04-04 19:52:39 +00:00
Internals: Constructor format update. No functional change.
This commit is contained in:
parent
c335aad25f
commit
8658a0d7dc
@ -34,12 +34,12 @@ void test(const string& lhss, const string& op, const string& rhss, const string
|
||||
char* r1 = strdup(rhss.c_str());
|
||||
char* e1 = strdup(exps.c_str());
|
||||
|
||||
const FileLine fl = new FileLine(FileLine::builtInFinename());
|
||||
const FileLine fl = new FileLine{FileLine::builtInFinename()};
|
||||
|
||||
V3Number lhnum(fl, l1);
|
||||
V3Number rhnum(fl, r1);
|
||||
V3Number expnum(fl, e1);
|
||||
V3Number gotnum(fl, expnum.width());
|
||||
V3Number lhnum{fl, l1};
|
||||
V3Number rhnum{fl, r1};
|
||||
V3Number expnum{fl, e1};
|
||||
V3Number gotnum{fl, expnum.width()};
|
||||
|
||||
if (op == "redOr") {
|
||||
gotnum.opRedOr(lhnum);
|
||||
|
@ -67,7 +67,7 @@ public:
|
||||
|
||||
VSymEnt* findNewTable(AstNode* nodep) {
|
||||
if (!nodep->user4p()) {
|
||||
VSymEnt* const symsp = new VSymEnt(&m_syms, nodep);
|
||||
VSymEnt* const symsp = new VSymEnt{&m_syms, nodep};
|
||||
nodep->user4p(symsp);
|
||||
}
|
||||
return getTable(nodep);
|
||||
@ -87,7 +87,7 @@ public:
|
||||
void reinsert(AstNode* nodep, VSymEnt* parentp, string name) {
|
||||
if (!parentp) parentp = symCurrentp();
|
||||
if (name == "") { // New name with space in name so can't collide with users
|
||||
name = string(" anon") + nodep->type().ascii() + cvtToStr(++s_anonNum);
|
||||
name = std::string{" anon"} + nodep->type().ascii() + cvtToStr(++s_anonNum);
|
||||
}
|
||||
parentp->reinsert(name, findNewTable(nodep));
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ public:
|
||||
if (activityAlways()) {
|
||||
return "*ALWAYS*";
|
||||
} else {
|
||||
return (string(slow() ? "*SLOW* " : "")) + insertp()->name();
|
||||
return std::string{slow() ? "*SLOW* " : ""} + insertp()->name();
|
||||
}
|
||||
}
|
||||
virtual string dotColor() const override { return slow() ? "yellowGreen" : "green"; }
|
||||
|
Loading…
Reference in New Issue
Block a user