Skip to content

Commit 3af5ab2

Browse files
committed
Apply clang-tidy fixes for readability-identifier-naming in Transforms.cpp (NFC)
1 parent c0fe2b8 commit 3af5ab2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ struct PackedOperandsDim {
202202

203203
/// Helper struct to encode packing along all dimensions of a LinalgOp.
204204
struct PackedOperandsDimList {
205-
void push_back(PackedOperandsDim &&packedOperandsDims) {
205+
void pushBack(PackedOperandsDim &&packedOperandsDims) {
206206
spec.emplace_back(packedOperandsDims);
207207
}
208208
/// Return all the dims that have been packed for operand @ `operandPos`.
@@ -539,7 +539,7 @@ FailureOr<PackResult> linalg::pack(RewriterBase &rewriter,
539539
if (failed(maybePackedDimForEachOperand))
540540
return failure();
541541
packedOperandsDims.packedDimForEachOperand = *maybePackedDimForEachOperand;
542-
listOfPackedOperandsDim.push_back(std::move(packedOperandsDims));
542+
listOfPackedOperandsDim.pushBack(std::move(packedOperandsDims));
543543

544544
LLVM_DEBUG(
545545
DBGS() << "++++ After pack size #" << i << ": " << packedSizes[i]

0 commit comments

Comments
 (0)