diff --git a/mlir/lib/Dialect/Arith/Transforms/UnsignedWhenEquivalent.cpp b/mlir/lib/Dialect/Arith/Transforms/UnsignedWhenEquivalent.cpp index 53f2008324f05..4edce84bafd41 100644 --- a/mlir/lib/Dialect/Arith/Transforms/UnsignedWhenEquivalent.cpp +++ b/mlir/lib/Dialect/Arith/Transforms/UnsignedWhenEquivalent.cpp @@ -125,12 +125,11 @@ struct ArithUnsignedWhenEquivalentPass ConversionTarget target(*ctx); target.addLegalDialect(); - target - .addDynamicallyLegalOp( - [&solver](Operation *op) -> std::optional { - return failed(staticallyNonNegative(solver, op)); - }); + target.addDynamicallyLegalOp( + [&solver](Operation *op) -> std::optional { + return failed(staticallyNonNegative(solver, op)); + }); target.addDynamicallyLegalOp( [&solver](CmpIOp op) -> std::optional { return failed(isCmpIConvertable(solver, op));