mirror of
https://github.com/verilator/verilator.git
synced 2025-01-09 16:17:36 +00:00
Internals: Remove dead code
This commit is contained in:
parent
495585830d
commit
c3887efbf3
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user