forked from OSchip/llvm-project
Remove the only use of SlotIndex::isPHI. This bit is not being set consistently
and it will be removed shortly. llvm-svn: 114778
This commit is contained in:
parent
384b0dec68
commit
250fed25fd
|
@ -458,7 +458,7 @@ private:
|
|||
// Iterate over any PHI kills - we'll need to insert new copies for them.
|
||||
for (LiveInterval::iterator LRI = newLI->begin(), LRE = newLI->end();
|
||||
LRI != LRE; ++LRI) {
|
||||
if (LRI->valno != newVNI || LRI->end.isPHI())
|
||||
if (LRI->valno != newVNI)
|
||||
continue;
|
||||
SlotIndex killIdx = LRI->end;
|
||||
MachineBasicBlock *killMBB = lis->getMBBFromIndex(killIdx);
|
||||
|
|
Loading…
Reference in New Issue