[llvm] 91053e3 - [LV] Reflow comment for VectorizationCostTy (NFC).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 25 06:20:56 PDT 2021


Author: Florian Hahn
Date: 2021-06-25T14:20:06+01:00
New Revision: 91053e327ccd27cb1ee66a7d4954d456ceeed5f6

URL: https://github.com/llvm/llvm-project/commit/91053e327ccd27cb1ee66a7d4954d456ceeed5f6
DIFF: https://github.com/llvm/llvm-project/commit/91053e327ccd27cb1ee66a7d4954d456ceeed5f6.diff

LOG: [LV] Reflow comment for VectorizationCostTy (NFC).

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
index 3156f5feacdc1..f28dbaac2d45c 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -1660,11 +1660,9 @@ class LoopVectorizationCostModel {
 
   /// The vectorization cost is a combination of the cost itself and a boolean
   /// indicating whether any of the contributing operations will actually
-  /// operate on
-  /// vector values after type legalization in the backend. If this latter value
-  /// is
-  /// false, then all operations will be scalarized (i.e. no vectorization has
-  /// actually taken place).
+  /// operate on vector values after type legalization in the backend. If this
+  /// latter value is false, then all operations will be scalarized (i.e. no
+  /// vectorization has actually taken place).
   using VectorizationCostTy = std::pair<InstructionCost, bool>;
 
   /// Returns the expected execution cost. The unit of the cost does


        


More information about the llvm-commits mailing list