[llvm] [VPlan] Add new VPIRPhi overlay for VPIRInsts wrapping phi nodes (NFC). (PR #129387)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 26 04:51:58 PDT 2025


================
@@ -9131,20 +9131,19 @@ collectUsersInExitBlocks(Loop *OrigLoop, VPRecipeBuilder &Builder,
       continue;
 
     for (VPRecipeBase &R : *ExitVPBB) {
-      auto *ExitIRI = dyn_cast<VPIRInstruction>(&R);
+      auto *ExitIRI = dyn_cast<VPIRPhi>(&R);
----------------
fhahn wrote:

Yep this was intentional and matches behavior in other places, for now there are only IR phis to handle.

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


More information about the llvm-commits mailing list