[llvm] [VPlan] Add new VPIRPhi overlay for VPIRInsts wrapping phi nodes (NFC). (PR #129387)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 26 04:51:59 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);
----------------
fhahn wrote:
Done thanks
https://github.com/llvm/llvm-project/pull/129387
More information about the llvm-commits
mailing list