[llvm] [VPlan] Use VPInstruction for VPScalarPHIRecipe. (NFCI) (PR #129767)

via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 22:03:30 PDT 2025


================
@@ -458,6 +464,13 @@ Value *VPInstruction::generate(VPTransformState &State) {
   }
 
   switch (getOpcode()) {
+  case Instruction::PHI: {
----------------
ayalz wrote:

Thanks! Perhaps worth an assert? VPInstructions with phi opcodes could be used for non-header phi's prior to predication. Eventually also for uniform branches, and out-of-loop branches.

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


More information about the llvm-commits mailing list