[llvm] [VPlan] Introduce VPSingleDefRecipe. (PR #77023)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 11 06:04:41 PST 2024
================
@@ -819,10 +810,77 @@ class VPRecipeBase : public ilist_node_with_parent<VPRecipeBase, VPBasicBlock>,
} \
static inline bool classof(const VPRecipeBase *R) { \
return R->getVPDefID() == VPDefID; \
+ } \
+ static inline bool classof(const VPSingleDefRecipe *R) { \
+ return R->getVPDefID() == VPDefID; \
}
+/// A common base class for recipes defining a single result value.
----------------
fhahn wrote:
Update the comment for `VPRecipeBase` to refer to VPSingleDef and updated the comment here as well, thanks!
https://github.com/llvm/llvm-project/pull/77023
More information about the llvm-commits
mailing list