Skip to content

Commit 6d71605

Browse files
committed
code formatting
1 parent cb16424 commit 6d71605

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

mlir/unittests/Dialect/SCF/LoopLikeSCFOpsTest.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
66
//
77
//===----------------------------------------------------------------------===//
8-
//
9-
//
10-
//===----------------------------------------------------------------------===//
118

129
#include "mlir/Dialect/Arith/IR/Arith.h"
1310
#include "mlir/Dialect/SCF/IR/SCF.h"
@@ -85,7 +82,8 @@ TEST_F(SCFLoopLikeTest, queryMultidimensionalLooplikes) {
8582
ArrayRef<OpFoldResult>({step, step}), ValueRange(), std::nullopt);
8683
checkMultidimensional(forallOp);
8784

88-
auto parallelOp = b.create<scf::ParallelOp>(
89-
loc, ValueRange({lb, lb}), ValueRange({ub, ub}), ValueRange({step, step}), ValueRange());
85+
auto parallelOp =
86+
b.create<scf::ParallelOp>(loc, ValueRange({lb, lb}), ValueRange({ub, ub}),
87+
ValueRange({step, step}), ValueRange());
9088
checkMultidimensional(parallelOp);
91-
}
89+
}

0 commit comments

Comments
 (0)