Internals: clangtidy cleanups. No functional change intended (#7343)

This commit is contained in:
Wilson Snyder
2026-03-27 23:14:18 -04:00
committed by GitHub
parent 82c817d425
commit 31757df229
139 changed files with 1089 additions and 1238 deletions
+2 -2
View File
@@ -167,11 +167,11 @@ class PremitVisitor final : public VNVisitor {
// VISITORS - Statements
#define START_STATEMENT_OR_RETURN(stmtp) \
if (!m_cfuncp) return; \
if (stmtp->user1SetOnce()) return; \
if ((stmtp)->user1SetOnce()) return; \
VL_RESTORER(m_assignLhs); \
VL_RESTORER(m_stmtp); \
m_assignLhs = false; \
m_stmtp = stmtp;
m_stmtp = (stmtp);
void visit(AstNodeAssign* nodep) override {
START_STATEMENT_OR_RETURN(nodep);