[llvm] [VPlan] Manage instruction medata in VPlan. (PR #135272)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 18 03:11:09 PDT 2025
================
@@ -9082,6 +9089,13 @@ bool VPRecipeBuilder::getScaledReductions(
return false;
}
+SmallVector<std::pair<unsigned, MDNode *>>
+VPRecipeBuilder::getMetadataToPropagate(Instruction *I) {
+ SmallVector<std::pair<unsigned, MDNode *>> Metadata;
+ ::getMetadataToPropagate(I, Metadata);
----------------
ayalz wrote:
What does ::getMetadataToPropagate() refer to?
https://github.com/llvm/llvm-project/pull/135272
More information about the llvm-commits
mailing list