[llvm] [LV][VPlan] Introduce VPScalarStore recipe to handle scalar stores in exit block. (PR #93148)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 16 00:52:57 PDT 2024
================
@@ -1102,6 +1103,7 @@ class VPRecipeWithIRFlags : public VPSingleDefRecipe {
public:
static inline bool classof(const VPRecipeBase *R) {
return R->getVPDefID() == VPRecipeBase::VPInstructionSC ||
+ R->getVPDefID() == VPRecipeBase::VPScalarStoreSC ||
----------------
fhahn wrote:
VPScalarStoreRecipe doesn't inherit from VPRecipeWithIRFlags?
https://github.com/llvm/llvm-project/pull/93148
More information about the llvm-commits
mailing list