Skip to content

Commit fba111d

Browse files
committed
[MLIR] Apply clang-tidy fixes for bugprone-argument-comment in PromoteShuffleToAMDGPU.cpp (NFC)
1 parent ca63b01 commit fba111d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

mlir/lib/Dialect/GPU/Transforms/PromoteShuffleToAMDGPU.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ struct PromoteShuffleToSwizzlePattern
5454

5555
Location loc = op.getLoc();
5656
Value res = amdgpu::SwizzleBitModeOp::create(
57-
rewriter, loc, op.getResult(0).getType(), op.getValue(), /*andMask=*/31,
57+
rewriter, loc, op.getResult(0).getType(), op.getValue(),
58+
/*and_mask=*/31,
5859
/*orMask=*/0, /*xorMask=*/offsetValue);
5960
Value valid = arith::ConstantIntOp::create(rewriter, loc, 1, /*width*/ 1);
6061
rewriter.replaceOp(op, {res, valid});

0 commit comments

Comments
 (0)