Internals: Remove dead code

This commit is contained in:
Wilson Snyder 2010-03-22 19:06:30 -04:00
parent 495585830d
commit c3887efbf3

View File

@ -197,7 +197,6 @@ private:
// STATE // STATE
ActiveNamer m_namer; // Tracking of active names ActiveNamer m_namer; // Tracking of active names
AstCFunc* m_scopeFinalp; // Final function for this scope AstCFunc* m_scopeFinalp; // Final function for this scope
AstAlways* m_alwaysp; // Under always
bool m_itemCombo; // Found a SenItem combo bool m_itemCombo; // Found a SenItem combo
bool m_itemSequent; // Found a SenItem sequential bool m_itemSequent; // Found a SenItem sequential
@ -285,11 +284,9 @@ private:
} }
// Read sensitivitues // Read sensitivitues
m_alwaysp = nodep;
m_itemCombo = false; m_itemCombo = false;
m_itemSequent = false; m_itemSequent = false;
nodep->sensesp()->iterateAndNext(*this); nodep->sensesp()->iterateAndNext(*this);
m_alwaysp = NULL;
bool combo = m_itemCombo; bool combo = m_itemCombo;
bool sequent = m_itemSequent; bool sequent = m_itemSequent;
@ -366,7 +363,6 @@ public:
// CONSTUCTORS // CONSTUCTORS
ActiveVisitor(AstNetlist* nodep) { ActiveVisitor(AstNetlist* nodep) {
m_scopeFinalp = NULL; m_scopeFinalp = NULL;
m_alwaysp = NULL;
m_itemCombo = false; m_itemCombo = false;
m_itemSequent = false; m_itemSequent = false;
nodep->accept(*this); nodep->accept(*this);