Apply 'make format'

This commit is contained in:
github action 2022-05-25 04:51:51 +00:00
parent 530817191e
commit a372e010bd

View File

@ -104,7 +104,8 @@ public:
string newtext = deQuote(fileline, text); string newtext = deQuote(fileline, text);
return new AstText(fileline, newtext); return new AstText(fileline, newtext);
} }
AstNode* createCellOrIfaceRef(FileLine* fileline, const string& name, AstPin* pinlistp, AstNodeRange* rangelistp) { AstNode* createCellOrIfaceRef(FileLine* fileline, const string& name, AstPin* pinlistp,
AstNodeRange* rangelistp) {
// Must clone m_instParamp as may be comma'ed list of instances // Must clone m_instParamp as may be comma'ed list of instances
VSymEnt* const foundp = SYMP->symCurrentp()->findIdFallback(name); VSymEnt* const foundp = SYMP->symCurrentp()->findIdFallback(name);
if (foundp && VN_IS(foundp->nodep(), Port)) { if (foundp && VN_IS(foundp->nodep(), Port)) {
@ -118,9 +119,12 @@ public:
AstVar* const nodep = createVariable(fileline, name, rangelistp, nullptr); AstVar* const nodep = createVariable(fileline, name, rangelistp, nullptr);
return nodep; return nodep;
} }
AstCell* const nodep = new AstCell{fileline, GRAMMARP->m_instModuleFl, AstCell* const nodep = new AstCell{fileline,
name, GRAMMARP->m_instModule, pinlistp, GRAMMARP->m_instModuleFl,
AstPin::cloneTreeNull(GRAMMARP->m_instParamp, true), name,
GRAMMARP->m_instModule,
pinlistp,
AstPin::cloneTreeNull(GRAMMARP->m_instParamp, true),
GRAMMARP->scrubRange(rangelistp)}; GRAMMARP->scrubRange(rangelistp)};
nodep->trace(GRAMMARP->allTracingOn(fileline)); nodep->trace(GRAMMARP->allTracingOn(fileline));
return nodep; return nodep;