[llvm] 77913b5 - [VPlan] Add instantiation of VPUnrollPartAccessor<3> to fix link error.
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 15:06:02 PDT 2025
Author: Florian Hahn
Date: 2025-03-28T22:05:54Z
New Revision: 77913b5d1dc970e3e053ab1ab160da897560b1b4
URL: https://github.com/llvm/llvm-project/commit/77913b5d1dc970e3e053ab1ab160da897560b1b4
DIFF: https://github.com/llvm/llvm-project/commit/77913b5d1dc970e3e053ab1ab160da897560b1b4.diff
LOG: [VPlan] Add instantiation of VPUnrollPartAccessor<3> to fix link error.
Fix link errors with GCC by providing an explicit instantiation.
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 af1d988f1a773..f2d3b1588229a 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp
@@ -391,6 +391,7 @@ unsigned VPUnrollPartAccessor<PartOpIdx>::getUnrollPart(VPUser &U) const {
namespace llvm {
template class VPUnrollPartAccessor<2>;
+template class VPUnrollPartAccessor<3>;
}
VPInstruction::VPInstruction(unsigned Opcode, CmpInst::Predicate Pred,
More information about the llvm-commits
mailing list