[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
================
@@ -212,7 +213,7 @@ class VPBuilder {
DebugLoc DL = DebugLoc::getUnknown(),
const Twine &Name = "") {
return tryInsertInstruction(
- new VPInstruction(VPInstruction::LogicalAnd, {LHS, RHS}, DL, Name));
+ new VPInstruction(VPInstruction::LogicalAnd, {LHS, RHS}, {}, DL, Name));
----------------
fhahn wrote:
Updated to call createNaryOp here. I did not introduce another argument here, as LogicalAnd does not support any metadata.
https://github.com/llvm/llvm-project/pull/167253
More information about the llvm-commits
mailing list