From 841254e9e8eb85ab09b6ccbb4bff34fb40ef0522 Mon Sep 17 00:00:00 2001 From: github action Date: Tue, 16 Sep 2025 23:02:39 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Width.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/V3Width.cpp b/src/V3Width.cpp index 1b4c2a7f4..9e32862d1 100644 --- a/src/V3Width.cpp +++ b/src/V3Width.cpp @@ -3270,8 +3270,8 @@ class WidthVisitor final : public VNVisitor { } bool memberSelClass(AstMemberSel* nodep, AstClassRefDType* adtypep) { if (nodep->name() == "rand_mode" || nodep->name() == "randomize") { - AstMethodCall* const newp = new AstMethodCall{nodep->fileline(), nodep->fromp()->unlinkFrBack(), - nodep->name(), nullptr}; + AstMethodCall* const newp = new AstMethodCall{ + nodep->fileline(), nodep->fromp()->unlinkFrBack(), nodep->name(), nullptr}; nodep->replaceWith(newp); VL_DO_DANGLING(pushDeletep(nodep), nodep); visit(newp); @@ -7715,7 +7715,7 @@ class WidthVisitor final : public VNVisitor { void iterateCheckBool(AstNode* parentp, const char* side, AstNode* underp, Stage stage) { UASSERT_OBJ(stage == BOTH, parentp, - "Bad call"); // Booleans always self-determined so do BOTH at once + "Bad call"); // Booleans always self-determined so do BOTH at once // Underp is used in a self-determined but boolean context, reduce a // multibit number to one bit // stage is always BOTH so not passed as argument