mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Remove the only use of SlotIndex::isPHI. This bit is not being set consistently
and it will be removed shortly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114778 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1803b37bad
commit
7c78e2624c
@ -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
Block a user