[llvm] b246943 - [VPlan] Add instantiation of VPUnrollPartAccessor<2> to fix link errors.
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 06:13:50 PDT 2025
Author: Florian Hahn
Date: 2025-03-25T13:12:34Z
New Revision: b24694371c62a71aab3550e983a6bf971ed721ff
URL: https://github.com/llvm/llvm-project/commit/b24694371c62a71aab3550e983a6bf971ed721ff
DIFF: https://github.com/llvm/llvm-project/commit/b24694371c62a71aab3550e983a6bf971ed721ff.diff
LOG: [VPlan] Add instantiation of VPUnrollPartAccessor<2> to fix link errors.
Speculative fix for missing definitions in some configs, including
https://lab.llvm.org/buildbot/#/builders/159/builds/18760
Added:
Modified:
llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
index bc0bacd2f4c93..aff01715ad336 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
@@ -389,6 +389,10 @@ unsigned VPUnrollPartAccessor<PartOpIdx>::getUnrollPart(VPUser &U) const {
return 0;
}
+namespace llvm {
+template class VPUnrollPartAccessor<2>;
+}
+
VPInstruction::VPInstruction(unsigned Opcode, CmpInst::Predicate Pred,
VPValue *A, VPValue *B, DebugLoc DL,
const Twine &Name)
More information about the llvm-commits
mailing list