[llvm] [VPlan] Populate and use VPIRMetadata from VPInstructions (NFC) (PR #167253)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 10 02:26:25 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);
----------------
david-arm wrote:

Use default parameter similar to createNaryOp?

https://github.com/llvm/llvm-project/pull/167253


More information about the llvm-commits mailing list