[llvm] [LV] Restrict widest induction type to be IntegerType (NFC) (PR #128173)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 21 10:20:31 PST 2025
================
@@ -693,11 +694,11 @@ void LoopVectorizationLegality::addInductionPhi(
const DataLayout &DL = Phi->getDataLayout();
// Get the widest type.
- if (!PhiTy->isFloatingPointTy()) {
+ if (PhiTy->isIntOrPtrTy()) {
----------------
artagnon wrote:
If it weren't rejected by LoopVectorizationLegality, the later casts in LoopVectorize (which are stripped in this patch) would have crashed, no?
https://github.com/llvm/llvm-project/pull/128173
More information about the llvm-commits
mailing list