Mark merged-in VNInfo's as being PHIKilled.
[oota-llvm.git] / lib / CodeGen / StrongPHIElimination.cpp
index f6aa44e2346d80a51466d1bce42a85d8f99f2232..c277d56f7c970983dc5670989737aabe995ac8ac 100644 (file)
@@ -977,6 +977,11 @@ bool StrongPHIElimination::runOnMachineFunction(MachineFunction &Fn) {
         }
       }
       
+      LiveInterval& Int = LI.getOrCreateInterval(I->first);
+      const LiveRange* LR =
+                       Int.getLiveRangeContaining(LI.getMBBEndIdx(SI->second));
+      LR->valno->hasPHIKill = true;
+      
       I->second.erase(SI->first);
     }