diff --git a/mlir/include/mlir/Dialect/Utils/ReshapeOpsUtils.h b/mlir/include/mlir/Dialect/Utils/ReshapeOpsUtils.h index 3af89a6ab3799..af575e10acc8e 100644 --- a/mlir/include/mlir/Dialect/Utils/ReshapeOpsUtils.h +++ b/mlir/include/mlir/Dialect/Utils/ReshapeOpsUtils.h @@ -57,7 +57,7 @@ getSymbolLessAffineMaps(ArrayRef reassociation); /// Wraps a list of reassociations in an ArrayAttr. ArrayAttr -getReassociationIndicesAttribute(OpBuilder &b, +getReassociationIndicesAttribute(Builder &b, ArrayRef reassociation); /// Convert Array> to Array>. diff --git a/mlir/lib/Dialect/Utils/ReshapeOpsUtils.cpp b/mlir/lib/Dialect/Utils/ReshapeOpsUtils.cpp index 0336423c57b1d..ed40a080441bc 100644 --- a/mlir/lib/Dialect/Utils/ReshapeOpsUtils.cpp +++ b/mlir/lib/Dialect/Utils/ReshapeOpsUtils.cpp @@ -158,7 +158,7 @@ unsigned getMaxPosOfType(ArrayRef exprArrays) { } ArrayAttr mlir::getReassociationIndicesAttribute( - OpBuilder &b, ArrayRef reassociation) { + Builder &b, ArrayRef reassociation) { SmallVector reassociationAttr = llvm::to_vector<4>(llvm::map_range( reassociation, [&](const ReassociationIndices &indices) -> Attribute {