diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 0bf2d71a63ef4..0d774bac2acce 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -10186,7 +10186,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;