[llvm] [VPlan] Use DerivedIV in convertToStridedAccesses (PR #209611)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 22 09:03:22 PDT 2026
================
@@ -753,6 +754,12 @@ class VPIRFlags {
uint8_t CmpPredStorage;
FastMathFlagsTy FMFs;
};
+ /// Holds both the no-wrap flags and GEP no-wrap flags for computations
+ /// involving BinOps and a GEPs.
+ struct BinOpGEPFlagsTy {
+ WrapFlagsTy WrapFlags;
+ uint8_t RawGEPFlags;
+ };
----------------
fhahn wrote:
Could we use this also for the existing code using it for pointer inductions? If so, would be good to split off if possible
https://github.com/llvm/llvm-project/pull/209611
More information about the llvm-commits
mailing list