mirror of
https://github.com/verilator/verilator.git
synced 2026-09-02 10:48:27 +02:00
Internals: More const. No functional change intended.
This commit is contained in:
+2
-2
@@ -43,9 +43,9 @@ class UnrollVisitor final : public AstNVisitor {
|
||||
private:
|
||||
// STATE
|
||||
AstVar* m_forVarp; // Iterator variable
|
||||
AstVarScope* m_forVscp; // Iterator variable scope (nullptr for generate pass)
|
||||
const AstVarScope* m_forVscp; // Iterator variable scope (nullptr for generate pass)
|
||||
AstConst* m_varValuep; // Current value of loop
|
||||
AstNode* m_ignoreIncp; // Increment node to ignore
|
||||
const AstNode* m_ignoreIncp; // Increment node to ignore
|
||||
bool m_varModeCheck; // Just checking RHS assignments
|
||||
bool m_varModeReplace; // Replacing varrefs
|
||||
bool m_varAssignHit; // Assign var hit
|
||||
|
||||
Reference in New Issue
Block a user