[llvm] [VPlan] Add VPIRInstruction, use for exit block live-outs. (PR #100735)
    via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Fri Sep 13 06:12:20 PDT 2024
    
    
  
================
@@ -8695,17 +8698,18 @@ addUsersInExitBlock(VPlan &Plan,
   }
 
   // Introduce VPUsers modeling the exit values.
-  for (const auto &[ExitPhi, V] : ExitingValuesToFix) {
+  for (const auto &[IR, V] : ExitingValuesToFix) {
----------------
ayalz wrote:
```suggestion
  for (const auto &[ExitIRI, V] : ExitingValuesToFix) {
```
?
https://github.com/llvm/llvm-project/pull/100735
    
    
More information about the llvm-commits
mailing list