Apply 'make format'
This commit is contained in:
parent
e2f5854088
commit
574c69c092
|
|
@ -727,7 +727,7 @@ public:
|
||||||
bool fReloop() const { return m_fReloop; }
|
bool fReloop() const { return m_fReloop; }
|
||||||
bool fReorder() const { return m_fReorder; }
|
bool fReorder() const { return m_fReorder; }
|
||||||
bool fSlice() const { return m_fSlice; }
|
bool fSlice() const { return m_fSlice; }
|
||||||
int fSliceElementLimit() const { return m_fSliceElementLimit; }
|
int fSliceElementLimit() const { return m_fSliceElementLimit; }
|
||||||
bool fSplit() const { return m_fSplit; }
|
bool fSplit() const { return m_fSplit; }
|
||||||
bool fSubst() const { return m_fSubst; }
|
bool fSubst() const { return m_fSubst; }
|
||||||
bool fSubstConst() const { return m_fSubstConst; }
|
bool fSubstConst() const { return m_fSubstConst; }
|
||||||
|
|
|
||||||
|
|
@ -391,7 +391,8 @@ public:
|
||||||
explicit SliceVisitor(AstNetlist* nodep) { iterate(nodep); }
|
explicit SliceVisitor(AstNetlist* nodep) { iterate(nodep); }
|
||||||
~SliceVisitor() override {
|
~SliceVisitor() override {
|
||||||
V3Stats::addStat("Optimizations, Slice array assignments", m_statAssigns);
|
V3Stats::addStat("Optimizations, Slice array assignments", m_statAssigns);
|
||||||
V3Stats::addStat("Optimizations, Slice array skips due to size limit", m_statSliceElementSkips);
|
V3Stats::addStat("Optimizations, Slice array skips due to size limit",
|
||||||
|
m_statSliceElementSkips);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue