Internals: Name cleanup. No functional change.

This commit is contained in:
Wilson Snyder 2017-09-16 11:06:35 -04:00
parent f30d71b0c5
commit 1e9e334929
2 changed files with 3 additions and 3 deletions

View File

@ -879,7 +879,7 @@ class GaterVisitor : public GaterBaseVisitor {
public: public:
// CONSTUCTORS // CONSTUCTORS
explicit GaterVisitor(AstNode* nodep) { explicit GaterVisitor(AstNetlist* nodep) {
// AstAlways visitor does the real work, so most zeroing needs to be in clear() // AstAlways visitor does the real work, so most zeroing needs to be in clear()
clear(); clear();
nodep->accept(*this); nodep->accept(*this);

View File

@ -203,7 +203,7 @@ public:
public: public:
// CONSTUCTORS // CONSTUCTORS
explicit InstDeModVarVisitor() {} explicit InstDeModVarVisitor() {}
void accept(AstNodeModule* nodep) { void main(AstNodeModule* nodep) {
UINFO(8," dmMODULE "<<nodep<<endl); UINFO(8," dmMODULE "<<nodep<<endl);
m_modVarNameMap.clear(); m_modVarNameMap.clear();
nodep->accept(*this); nodep->accept(*this);
@ -266,7 +266,7 @@ private:
UINFO(4," CELL "<<nodep<<endl); UINFO(4," CELL "<<nodep<<endl);
// Find submodule vars // Find submodule vars
if (!nodep->modp()) nodep->v3fatalSrc("Unlinked"); if (!nodep->modp()) nodep->v3fatalSrc("Unlinked");
m_deModVars.accept(nodep->modp()); m_deModVars.main(nodep->modp());
// //
if (nodep->rangep()) { if (nodep->rangep()) {
m_cellRangep = nodep->rangep(); m_cellRangep = nodep->rangep();