From 7c11008ee5411e959c192711327e739a87027ffa Mon Sep 17 00:00:00 2001 From: github action Date: Fri, 19 Jun 2026 08:36:05 +0000 Subject: [PATCH] Apply 'make format' [ci skip] --- src/V3Premit.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/V3Premit.cpp b/src/V3Premit.cpp index a09910844..5d14d4fe6 100644 --- a/src/V3Premit.cpp +++ b/src/V3Premit.cpp @@ -169,7 +169,8 @@ class PremitVisitor final : public VNVisitor { // Shift amount not known at compile time. Convert to *Ovr version. Don't need to do // if it would use a wide operation which works correctly at runtime, of if the max // value of the shift amount is less than the with of the shifted value. - if (nodep->widthMin() <= VL_QUADSIZE && (nodep->width() < (1LL << nodep->rhsp()->widthMin()))) { + if (nodep->widthMin() <= VL_QUADSIZE + && (nodep->width() < (1LL << nodep->rhsp()->widthMin()))) { AstNodeExpr* const lhsp = nodep->lhsp()->unlinkFrBack(); AstNodeExpr* const rhsp = nodep->rhsp()->unlinkFrBack(); AstNodeExpr* newp = nullptr;