[llvm] [LoopVectorize] Further improve cost model for early exit loops (PR #126235)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 01:21:21 PST 2025


================
@@ -10258,7 +10298,7 @@ static bool areRuntimeChecksProfitable(GeneratedRTChecks &Checks,
 
   // Skip vectorization if the expected trip count is less than the minimum
   // required trip count.
-  if (auto ExpectedTC = getSmallBestKnownTC(PSE, L)) {
+  if (auto ExpectedTC = getSmallBestKnownTC(PSE, CM.TheLoop)) {
----------------
david-arm wrote:

Again, it is related because we don't have a `L` function argument.

https://github.com/llvm/llvm-project/pull/126235


More information about the llvm-commits mailing list