[llvm] [VPlan] Add new VPIRPhi overlay for VPIRInsts wrapping phi nodes (NFC). (PR #129387)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 07:09:55 PDT 2025
================
@@ -1033,16 +1033,19 @@ class VPInstruction : public VPRecipeWithIRFlags,
class VPIRInstruction : public VPRecipeBase {
Instruction &I;
-public:
+protected:
VPIRInstruction(Instruction &I)
: VPRecipeBase(VPDef::VPIRInstructionSC, ArrayRef<VPValue *>()), I(I) {}
+public:
~VPIRInstruction() override = default;
+ static VPIRInstruction *create(Instruction &I);
----------------
ayalz wrote:
Worth documenting `create()`.
https://github.com/llvm/llvm-project/pull/129387
More information about the llvm-commits
mailing list