[llvm] [VPlan] Impl VPlan-based pattern match for ExtendedRed and MulAccRed (PR #113903)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 09:12:52 PDT 2025
================
@@ -597,12 +599,19 @@ class VPRecipeWithIRFlags : public VPSingleDefRecipe {
DisjointFlagsTy(bool IsDisjoint) : IsDisjoint(IsDisjoint) {}
};
-private:
- struct ExactFlagsTy {
- char IsExact : 1;
+ struct GEPFlagsTy {
+ char IsInBounds : 1;
+ GEPFlagsTy(bool IsInBounds) : IsInBounds(IsInBounds) {}
};
----------------
fhahn wrote:
Is this change needed?
https://github.com/llvm/llvm-project/pull/113903
More information about the llvm-commits
mailing list