mirror of
https://github.com/verilator/verilator.git
synced 2026-09-07 01:37:21 +02:00
Internals: clangtidy cleanups. No functional change intended (#7343)
This commit is contained in:
+2
-2
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user