[llvm] 65c45bf - [LoopVectorize][NFC] Fix formatting issue with a comment (#129033)

via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 04:51:08 PST 2025


Author: David Sherwood
Date: 2025-02-27T12:51:04Z
New Revision: 65c45bfa7dd3bc6afa34f2822e61962b810e4244

URL: https://github.com/llvm/llvm-project/commit/65c45bfa7dd3bc6afa34f2822e61962b810e4244
DIFF: https://github.com/llvm/llvm-project/commit/65c45bfa7dd3bc6afa34f2822e61962b810e4244.diff

LOG: [LoopVectorize][NFC] Fix formatting issue with a comment (#129033)

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 31196170ab8ba..e2612698b6b0f 100644
--- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -10199,7 +10199,8 @@ static bool areRuntimeChecksProfitable(GeneratedRTChecks &Checks,
     return true;
   }
 
-  // The scalar cost should only be 0 when vectorizing with a user specified VF/IC. In those cases, runtime checks should always be generated.
+  // The scalar cost should only be 0 when vectorizing with a user specified
+  // VF/IC. In those cases, runtime checks should always be generated.
   uint64_t ScalarC = *VF.ScalarCost.getValue();
   if (ScalarC == 0)
     return true;


        


More information about the llvm-commits mailing list