Skip to content

Commit 8f71488

Browse files
committed
Fix clang-format.
1 parent 6976910 commit 8f71488

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
@@ -99,9 +99,8 @@ struct PowiOpToROCDLLibraryCalls : public OpRewritePattern<complex::PowiOp> {
9999
Value exponent = rewriter.create<complex::CreateOp>(
100100
loc, op.getLhs().getType(), exponentReal, zeroImag);
101101

102-
rewriter
103-
.replaceOpWithNewOp<complex::PowOp>(op, op.getType(), op.getLhs(),
104-
exponent);
102+
rewriter.replaceOpWithNewOp<complex::PowOp>(op, op.getType(), op.getLhs(),
103+
exponent);
105104
return success();
106105
}
107106
};

0 commit comments

Comments
 (0)