Skip to content

Commit 6d21ef7

Browse files
committed
[MLIR] Apply clang-tidy fixes for readability-identifier-naming in TransformOps.cpp (NFC)
1 parent 8edb5b4 commit 6d21ef7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/lib/Dialect/Transform/IR/TransformOps.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1634,9 +1634,9 @@ transform::ForeachOp::apply(transform::TransformRewriter &rewriter,
16341634
// smallest payload in the targets.
16351635
if (withZipShortest) {
16361636
numIterations =
1637-
llvm::min_element(payloads, [&](const SmallVector<MappedValue> &A,
1638-
const SmallVector<MappedValue> &B) {
1639-
return A.size() < B.size();
1637+
llvm::min_element(payloads, [&](const SmallVector<MappedValue> &a,
1638+
const SmallVector<MappedValue> &b) {
1639+
return a.size() < b.size();
16401640
})->size();
16411641

16421642
for (size_t argIdx = 0; argIdx < payloads.size(); argIdx++)

0 commit comments

Comments
 (0)