Skip to content

Commit b1d4265

Browse files
committed
Apply clang-tidy fixes for llvm-qualified-auto in Promotion.cpp (NFC)
1 parent 197a73f commit b1d4265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ promoteSubViews(ImplicitLocOpBuilder &b,
331331

332332
// Copy data into the promoted buffers. Use callback if provided.
333333
for (auto v : options.subViews) {
334-
auto info = promotionInfoMap.find(v.first);
334+
auto *info = promotionInfoMap.find(v.first);
335335
if (info == promotionInfoMap.end())
336336
continue;
337337
if (options.operandsNumbersToCopyIn.count(v.first) == 0)

0 commit comments

Comments
 (0)