diff --git a/mlir/include/mlir/IR/AffineMap.h b/mlir/include/mlir/IR/AffineMap.h --- a/mlir/include/mlir/IR/AffineMap.h +++ b/mlir/include/mlir/IR/AffineMap.h @@ -137,7 +137,7 @@ AffineMap replaceDimsAndSymbols(ArrayRef dimReplacements, ArrayRef symReplacements, unsigned numResultDims, - unsigned numResultSyms); + unsigned numResultSyms) const; /// Folds the results of the application of an affine map on the provided /// operands to a constant if possible. diff --git a/mlir/lib/IR/AffineMap.cpp b/mlir/lib/IR/AffineMap.cpp --- a/mlir/lib/IR/AffineMap.cpp +++ b/mlir/lib/IR/AffineMap.cpp @@ -296,7 +296,7 @@ AffineMap AffineMap::replaceDimsAndSymbols(ArrayRef dimReplacements, ArrayRef symReplacements, unsigned numResultDims, - unsigned numResultSyms) { + unsigned numResultSyms) const { SmallVector results; results.reserve(getNumResults()); for (auto expr : getResults())