Apply 'make format' [ci skip]
This commit is contained in:
parent
0cd1fdf47e
commit
7c11008ee5
|
|
@ -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
|
// 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
|
// 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.
|
// 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 lhsp = nodep->lhsp()->unlinkFrBack();
|
||||||
AstNodeExpr* const rhsp = nodep->rhsp()->unlinkFrBack();
|
AstNodeExpr* const rhsp = nodep->rhsp()->unlinkFrBack();
|
||||||
AstNodeExpr* newp = nullptr;
|
AstNodeExpr* newp = nullptr;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue