[llvm] [VPlan] Add VPInstruction to unpack vector values to scalars. (PR #155670)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 20 12:54:54 PDT 2025


================
@@ -84,7 +84,7 @@ inline bool isSingleScalar(const VPValue *VPV) {
             all_of(VPI->operands(), isSingleScalar));
 
   // VPExpandSCEVRecipes must be placed in the entry and are alway uniform.
-  return isa<VPExpandSCEVRecipe>(VPV);
+  return isa<VPExpandSCEVRecipe, VPPhi>(VPV);
----------------
fhahn wrote:

Not needed in the latest version,removed thanks

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


More information about the llvm-commits mailing list