Skip to content

Commit 81a7039

Browse files
committed
Style
1 parent ee7db1d commit 81a7039

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

compiler/src/iree/compiler/Dialect/Util/Transforms/OptimizeIntArithmetic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ struct ConvertOpToUnsigned : public OpRewritePattern<Signed> {
102102
if (failed(staticallyLegalToConvertToUnsignedOp(solver, op))) {
103103
return failure();
104104
}
105-
auto newOp = rewriter.replaceOpWithNewOp<Unsigned>(op, op->getResultTypes(),
106-
op->getOperands(), op->getAttrs());
105+
auto newOp = rewriter.replaceOpWithNewOp<Unsigned>(
106+
op, op->getResultTypes(), op->getOperands(), op->getAttrs());
107107
if constexpr (std::is_same_v<Unsigned, arith::IndexCastUIOp>) {
108108
newOp.setExact(true);
109109
}

0 commit comments

Comments
 (0)