[llvm] [LoopVectorize][NFC] Fix formatting issue with a comment (PR #129033)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 02:20:42 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-transforms
Author: David Sherwood (david-arm)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/129033.diff
1 Files Affected:
- (modified) llvm/lib/Transforms/Vectorize/LoopVectorize.cpp (+2-1)
``````````diff
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;
``````````
</details>
https://github.com/llvm/llvm-project/pull/129033
More information about the llvm-commits
mailing list