[llvm] [RISCV] Vectorize phi for loop carried @llvm.vp.reduce.* (PR #131974)

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 23:59:55 PDT 2025


================
@@ -137,7 +137,8 @@ bool RISCVCodeGenPrepare::visitIntrinsicInst(IntrinsicInst &I) {
   if (expandVPStrideLoad(I))
     return true;
 
-  if (I.getIntrinsicID() != Intrinsic::vector_reduce_fadd)
+  if (I.getIntrinsicID() != Intrinsic::vector_reduce_fadd &&
+      !isa<VPReductionIntrinsic>(&I))
----------------
lukel97 wrote:

Oh sorry i didn't see Craig's earlier comments, that makes sense. Can you edit the doc comment for this method to mention the VP case?

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


More information about the llvm-commits mailing list