diff options
| author | Mehdi Amini <joker.eph@gmail.com> | 2025-08-21 10:30:04 -0700 |
|---|---|---|
| committer | Mehdi Amini <joker.eph@gmail.com> | 2025-11-20 10:27:39 -0800 |
| commit | 41008451260e4b95a901a5e073d7b14e55d6d303 (patch) | |
| tree | 5b853e33e2957129c25450980c5b690fad771560 /mlir | |
| parent | bfbd191f35352df2decde46d117bb940864889bf (diff) | |
[MLIR] Apply clang-tidy fixes for llvm-qualified-auto in ValueBoundsOpInterface.cpp (NFC)
Diffstat (limited to 'mlir')
| -rw-r--r-- | mlir/lib/Interfaces/ValueBoundsOpInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp b/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp index a5bfde11479f..cfe808bccfc9 100644 --- a/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp +++ b/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp @@ -129,7 +129,7 @@ ValueBoundsConstraintSet::Variable::Variable(AffineMap map, assert(var.map.getNumDims() == 0 && "expected only symbols"); SmallVector<AffineExpr> symReplacements; for (auto valueDim : var.mapOperands) { - auto it = llvm::find(this->mapOperands, valueDim); + auto *it = llvm::find(this->mapOperands, valueDim); if (it != this->mapOperands.end()) { // There is already a symbol for this operand. symReplacements.push_back(b.getAffineSymbolExpr( |
