Skip to content

Commit c8d369a

Browse files
committed
Fix clang-format.
1 parent 8c9a156 commit c8d369a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

mlir/lib/Conversion/ComplexToROCDLLibraryCalls/ComplexToROCDLLibraryCalls.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,8 @@ struct PowiOpToROCDLLibraryCalls : public OpRewritePattern<complex::PowiOp> {
9696
Value exponent = rewriter.create<complex::CreateOp>(
9797
loc, op.getLhs().getType(), exponentReal, zeroImag);
9898

99-
rewriter
100-
.replaceOpWithNewOp<complex::PowOp>(op, op.getType(), op.getLhs(),
101-
exponent);
99+
rewriter.replaceOpWithNewOp<complex::PowOp>(op, op.getType(), op.getLhs(),
100+
exponent);
102101
return success();
103102
}
104103
};

0 commit comments

Comments
 (0)