[llvm] [VPlan] Populate and use VPIRMetadata from VPInstructions (NFC) (PR #167253)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 16 13:42:01 PST 2025
================
@@ -223,7 +224,7 @@ class VPBuilder {
FMFs ? new VPInstruction(Instruction::Select, {Cond, TrueVal, FalseVal},
*FMFs, {}, DL, Name)
: new VPInstruction(Instruction::Select, {Cond, TrueVal, FalseVal},
- DL, Name);
+ {}, DL, Name);
----------------
fhahn wrote:
Currently we don't need to set VPIRmetadata for such selects. I undid the changes needed here for now, thanks
https://github.com/llvm/llvm-project/pull/167253
More information about the llvm-commits
mailing list