[Mlir-commits] [mlir] d807beb - [MLIR] Apply clang-tidy fixes for readability-identifier-naming in Matrix.cpp (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Fri Aug 22 06:09:06 PDT 2025
Author: Mehdi Amini
Date: 2025-08-22T06:07:49-07:00
New Revision: d807beb4e959be787da34bf6d64a685fac9388c4
URL: https://github.com/llvm/llvm-project/commit/d807beb4e959be787da34bf6d64a685fac9388c4
DIFF: https://github.com/llvm/llvm-project/commit/d807beb4e959be787da34bf6d64a685fac9388c4.diff
LOG: [MLIR] Apply clang-tidy fixes for readability-identifier-naming in Matrix.cpp (NFC)
Added:
Modified:
mlir/lib/Analysis/Presburger/Matrix.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Analysis/Presburger/Matrix.cpp b/mlir/lib/Analysis/Presburger/Matrix.cpp
index 55ecae33965b1..bb6056487512a 100644
--- a/mlir/lib/Analysis/Presburger/Matrix.cpp
+++ b/mlir/lib/Analysis/Presburger/Matrix.cpp
@@ -402,10 +402,10 @@ void Matrix<T>::print(raw_ostream &os) const {
for (unsigned row = 0; row < nRows; ++row)
for (unsigned column = 0; column < nColumns; ++column)
updatePrintMetrics<T>(at(row, column), ptm);
- unsigned MIN_SPACING = 1;
+ unsigned minSpacing = 1;
for (unsigned row = 0; row < nRows; ++row) {
for (unsigned column = 0; column < nColumns; ++column) {
- printWithPrintMetrics<T>(os, at(row, column), MIN_SPACING, ptm);
+ printWithPrintMetrics<T>(os, at(row, column), minSpacing, ptm);
}
os << "\n";
}
More information about the Mlir-commits
mailing list