[llvm] [VPlan] Introduce ComputeReductionResult VPInstruction opcode. (PR #70253)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 18 05:08:23 PST 2023
================
@@ -9099,6 +8967,10 @@ void LoopVectorizationPlanner::adjustRecipesForReductions(
for (VPRecipeBase *CurrentLink : Worklist.getArrayRef().drop_front()) {
VPValue *PreviousLinkV = PreviousLink->getVPSingleValue();
+ if (CurrentLink->getParent()->getParent() !=
+ PhiR->getParent()->getParent()) {
+ continue;
+ }
----------------
fhahn wrote:
Removed, thanks!
https://github.com/llvm/llvm-project/pull/70253
More information about the llvm-commits
mailing list