[llvm] [LoopVectorizer][AArch64] Add support for partial reduce subtraction (PR #123636)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 11 07:44:54 PST 2025


================
@@ -8932,6 +8936,20 @@ VPRecipeBuilder::tryToCreatePartialReduction(Instruction *Reduction,
     std::swap(BinOp, Accumulator);
 
   unsigned ReductionOpcode = Reduction->getOpcode();
+  if (ReductionOpcode == Instruction::Sub) {
+    VPBasicBlock *ParentBlock = Builder.getInsertBlock();
+    if (!ParentBlock)
+      return nullptr;
----------------
fhahn wrote:

Can the insert block ever be null?  I'd expect it to always be set at this point?

https://github.com/llvm/llvm-project/pull/123636


More information about the llvm-commits mailing list