Skip to content

Commit cf20e80

Browse files
committed
Fix codestyle
1 parent 49deedf commit cf20e80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/Linalg/Transforms/Fusion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ dropGivenUnitDims(OpBuilder &b, Location loc, Value from,
257257
llvm::SmallBitVector keptDims(dropDims);
258258
keptDims.flip();
259259
int64_t lastSetBit = keptDims.find_last();
260-
for(int64_t setBit : keptDims.set_bits()) {
260+
for (int64_t setBit : keptDims.set_bits()) {
261261
// Group consecutive dropped dimension with the next non-dropped dimension.
262262
// If this is the last set dimension, also group all subsequent dropped
263263
// dimension, if any.

0 commit comments

Comments
 (0)