From 618c99900c644acba0db3893c37cd3992871f0dd Mon Sep 17 00:00:00 2001 From: Jeff Fifield Date: Tue, 23 Jul 2024 09:38:20 -0600 Subject: [PATCH] clang-format --- .../AIEVec/Transforms/VectorToVectorConversions.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; });