[llvm] [LV] Restrict widest induction type to be IntegerType (NFC) (PR #128173)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 23 13:39:54 PST 2025
================
@@ -693,11 +694,11 @@ void LoopVectorizationLegality::addInductionPhi(
const DataLayout &DL = Phi->getDataLayout();
// Get the widest type.
- if (!PhiTy->isFloatingPointTy()) {
+ if (PhiTy->isIntOrPtrTy()) {
----------------
fhahn wrote:
This should be fine, induction descriptor only supports integer, pointer and fp types.
https://github.com/llvm/llvm-project/pull/128173
More information about the llvm-commits
mailing list