[Mlir-commits] [mlir] 9b51423 - Apply clang-tidy fixes for bugprone-argument-comment in ValueBoundsOpInterface.cpp (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Thu Feb 15 10:19:40 PST 2024
Author: Mehdi Amini
Date: 2024-02-15T10:17:27-08:00
New Revision: 9b514235fc383e1b76b8044da273cc04bf5160a8
URL: https://github.com/llvm/llvm-project/commit/9b514235fc383e1b76b8044da273cc04bf5160a8
DIFF: https://github.com/llvm/llvm-project/commit/9b514235fc383e1b76b8044da273cc04bf5160a8.diff
LOG: Apply clang-tidy fixes for bugprone-argument-comment in ValueBoundsOpInterface.cpp (NFC)
Added:
Modified:
mlir/lib/Interfaces/ValueBoundsOpInterface.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp b/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp
index 62ba63402925e0..85abc2df894797 100644
--- a/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp
+++ b/mlir/lib/Interfaces/ValueBoundsOpInterface.cpp
@@ -317,7 +317,7 @@ LogicalResult ValueBoundsConstraintSet::computeBound(
// Compute lower and upper bounds for `valueDim`.
SmallVector<AffineMap> lb(1), ub(1);
cstr.cstr.getSliceBounds(pos, 1, value.getContext(), &lb, &ub,
- /*getClosedUB=*/true);
+ /*closedUB=*/true);
// Note: There are TODOs in the implementation of `getSliceBounds`. In such a
// case, no lower/upper bound can be computed at the moment.
More information about the Mlir-commits
mailing list