[llvm] [VPlan] Introduce VPlanConstantFolder (PR #125365)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 12:27:03 PST 2025
================
@@ -66,6 +67,12 @@ class VPBuilder {
return createInstruction(Opcode, ArrayRef<VPValue *>(Operands), DL, Name);
}
+ VPValue *getOrAddLiveIn(Value *V) {
+ if (BB)
+ return BB->getPlan()->getOrAddLiveIn(V);
+ return new VPValue(V);
----------------
fhahn wrote:
This will introduce a leak?
https://github.com/llvm/llvm-project/pull/125365
More information about the llvm-commits
mailing list