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

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 10:45:25 PST 2025


================
@@ -418,6 +423,7 @@ bool VPInstruction::canGenerateScalarForFirstLane() const {
   if (isSingleScalar() || isVectorToScalar())
     return true;
   switch (Opcode) {
+  case Instruction::PHI:
   case Instruction::ICmp:
----------------
ayalz wrote:

```suggestion
  case Instruction::ICmp:
  case Instruction::PHI:
```
lex order?

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


More information about the llvm-commits mailing list