mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Get rid of sentinel insertion in interval reconstruction. It just masked the
problem, rather than fixing it. The problem has now been fixed the right way. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61723 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
830703b1bd
commit
d0ed240e30
@ -605,11 +605,6 @@ VNInfo* PreAllocSplitting::PerformPHIConstruction(
|
||||
else if (!intrablock && LiveOut.count(MBB))
|
||||
return LiveOut[MBB];
|
||||
|
||||
// Insert a sentinel into the map (which also acts as the DFS stack) so that
|
||||
// we won't get stuck in infinite recursion when processing a loop.
|
||||
if (!intrablock)
|
||||
LiveOut[MBB] = 0;
|
||||
|
||||
typedef DenseMap<MachineBasicBlock*, SmallPtrSet<MachineInstr*, 2> > RegMap;
|
||||
|
||||
// Check if our block contains any uses or defs.
|
||||
|
Loading…
Reference in New Issue
Block a user