Skip to content

Commit b8a3f0f

Browse files
committed
Apply clang-tidy fixes for llvm-qualified-auto in VectorToGPU.cpp (NFC)
1 parent 1cef577 commit b8a3f0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Conversion/VectorToGPU/VectorToGPU.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ convertTransferReadOp(RewriterBase &rewriter, vector::TransferReadOp op,
557557
auto elType = op.getVectorType().getElementType();
558558
const char *fragType = inferFragType(op);
559559
if (op->hasOneUse()) {
560-
auto user = *op->user_begin();
560+
auto *user = *op->user_begin();
561561
// Infer the signedness of the mma type from the integer extend.
562562
bool isSignedExtend = isa<arith::ExtSIOp>(user);
563563
if (isSignedExtend || isa<arith::ExtUIOp>(user)) {

0 commit comments

Comments
 (0)