Internals: Fix missing semis; no functional change

This commit is contained in:
Wilson Snyder
2025-04-02 23:13:43 -04:00
parent 353a4b7b4a
commit f55fee1cf0
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -219,7 +219,7 @@ class GateBuildVisitor final : public VNVisitorConst {
const char* consumeReason = nullptr) {
UASSERT_OBJ(m_scopep, nodep, "Logic not under Scope");
UASSERT_OBJ(!m_logicVertexp, nodep, "Logic blocks should not nest");
VL_RESTORER(m_logicVertexp)
VL_RESTORER(m_logicVertexp);
// m_activep is null under AstCFunc's, that's ok.
m_logicVertexp = new GateLogicVertex{m_graphp, nodep, m_activep, slow};