Skip to content

Commit e730f76

Browse files
committed
Apply clang-tidy fixes for llvm-qualified-auto in DecomposeMemrefs.cpp (NFC)
1 parent 9a2a6a7 commit e730f76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace mlir {
3030
using namespace mlir;
3131

3232
static void setInsertionPointToStart(OpBuilder &builder, Value val) {
33-
if (auto parentOp = val.getDefiningOp()) {
33+
if (auto *parentOp = val.getDefiningOp()) {
3434
builder.setInsertionPointAfter(parentOp);
3535
} else {
3636
builder.setInsertionPointToStart(val.getParentBlock());

0 commit comments

Comments
 (0)