mirror of
https://github.com/verilator/verilator.git
synced 2026-09-01 02:16:47 +02:00
Merge branch 'master' into develop-v5
This commit is contained in:
+3
-4
@@ -36,6 +36,8 @@
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
VL_DEFINE_DEBUG_FUNCTIONS;
|
||||
|
||||
//######################################################################
|
||||
// Structure for global state
|
||||
|
||||
@@ -129,8 +131,6 @@ class LifeBlock final {
|
||||
LifeBlock* const m_aboveLifep; // Upper life, or nullptr
|
||||
LifeState* const m_statep; // Current global state
|
||||
|
||||
VL_DEBUG_FUNC; // Declare debug()
|
||||
|
||||
public:
|
||||
LifeBlock(LifeBlock* aboveLifep, LifeState* statep)
|
||||
: m_aboveLifep{aboveLifep} // Null if top
|
||||
@@ -284,7 +284,6 @@ private:
|
||||
LifeBlock* m_lifep; // Current active lifetime map for current scope
|
||||
|
||||
// METHODS
|
||||
VL_DEBUG_FUNC; // Declare debug()
|
||||
void setNoopt() {
|
||||
m_noopt = true;
|
||||
m_lifep->clear();
|
||||
@@ -512,5 +511,5 @@ void V3Life::lifeAll(AstNetlist* nodep) {
|
||||
LifeState state;
|
||||
LifeTopVisitor{nodep, &state};
|
||||
} // Destruct before checking
|
||||
V3Global::dumpCheckGlobalTree("life", 0, v3Global.opt.dumpTreeLevel(__FILE__) >= 3);
|
||||
V3Global::dumpCheckGlobalTree("life", 0, dumpTree() >= 3);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user