OSDN Git Service

Mark merged-in VNInfo's as being PHIKilled.
authorOwen Anderson <resistor@mac.com>
Tue, 30 Sep 2008 23:58:47 +0000 (23:58 +0000)
committerOwen Anderson <resistor@mac.com>
Tue, 30 Sep 2008 23:58:47 +0000 (23:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56893 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/StrongPHIElimination.cpp

index f6aa44e..c277d56 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);
     }