From c3887efbf3114df493f1dd12de984217b0011bc8 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Mon, 22 Mar 2010 19:06:30 -0400 Subject: [PATCH] Internals: Remove dead code --- src/V3Active.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/V3Active.cpp b/src/V3Active.cpp index 4467c80db..b421a4681 100644 --- a/src/V3Active.cpp +++ b/src/V3Active.cpp @@ -197,7 +197,6 @@ private: // STATE ActiveNamer m_namer; // Tracking of active names AstCFunc* m_scopeFinalp; // Final function for this scope - AstAlways* m_alwaysp; // Under always bool m_itemCombo; // Found a SenItem combo bool m_itemSequent; // Found a SenItem sequential @@ -285,11 +284,9 @@ private: } // Read sensitivitues - m_alwaysp = nodep; m_itemCombo = false; m_itemSequent = false; nodep->sensesp()->iterateAndNext(*this); - m_alwaysp = NULL; bool combo = m_itemCombo; bool sequent = m_itemSequent; @@ -366,7 +363,6 @@ public: // CONSTUCTORS ActiveVisitor(AstNetlist* nodep) { m_scopeFinalp = NULL; - m_alwaysp = NULL; m_itemCombo = false; m_itemSequent = false; nodep->accept(*this);