[llvm] [LV] Add initial legality checks for ee loops with stores (PR #145663)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 18 03:26:39 PDT 2025
================
@@ -1871,6 +1997,15 @@ bool LoopVectorizationLegality::canVectorize(bool UseVPlanNativePath) {
return false;
}
+ // Bail out for state-changing EE loops for now.
----------------
fhahn wrote:
```suggestion
// Bail out for state-changing loops with uncountable exits for now.
```
https://github.com/llvm/llvm-project/pull/145663
More information about the llvm-commits
mailing list