diff --git a/lib/Dialect/AIEVec/Transforms/VectorToVectorConversions.cpp b/lib/Dialect/AIEVec/Transforms/VectorToVectorConversions.cpp index 98ee73aa32..ee02022bb8 100644 --- a/lib/Dialect/AIEVec/Transforms/VectorToVectorConversions.cpp +++ b/lib/Dialect/AIEVec/Transforms/VectorToVectorConversions.cpp @@ -412,8 +412,8 @@ struct FlattenMultDimTransferReadPattern auto inBoundsArrayAttrOpt = adaptor.getInBounds(); if (inBoundsArrayAttrOpt) { - SmallVector inBounds = llvm::to_vector( - inBoundsArrayAttrOpt.getAsValueRange()); + SmallVector inBounds = + llvm::to_vector(inBoundsArrayAttrOpt.getAsValueRange()); SmallVector newInBounds({false}); newInBounds[0] = std::all_of(inBounds.begin(), inBounds.end(), [](bool v) { return v; }); @@ -472,8 +472,8 @@ struct FlattenMultDimTransferWritePattern auto inBoundsArrayAttrOpt = adaptor.getInBounds(); if (inBoundsArrayAttrOpt) { - SmallVector inBounds = llvm::to_vector( - inBoundsArrayAttrOpt.getAsValueRange()); + SmallVector inBounds = + llvm::to_vector(inBoundsArrayAttrOpt.getAsValueRange()); SmallVector newInBounds({false}); newInBounds[0] = std::all_of(inBounds.begin(), inBounds.end(), [](bool v) { return v; });