I accidentally removed this check in an earlier commit, which cause breakage in the pre alloc splitter.
llvm-svn: 62678
This commit is contained in:
parent
3029b35faa
commit
fe48dfa0f2
|
|
@ -1219,6 +1219,10 @@ bool PreAllocSplitting::SplitRegLiveInterval(LiveInterval *LI) {
|
||||||
MachineInstr *DefMI = (ValNo->def != ~0U)
|
MachineInstr *DefMI = (ValNo->def != ~0U)
|
||||||
? LIs->getInstructionFromIndex(ValNo->def) : NULL;
|
? LIs->getInstructionFromIndex(ValNo->def) : NULL;
|
||||||
|
|
||||||
|
// If this would create a new join point, do not split.
|
||||||
|
if (DefMI && createsNewJoin(LR, DefMI->getParent(), Barrier->getParent()))
|
||||||
|
return false;
|
||||||
|
|
||||||
// Find all references in the barrier mbb.
|
// Find all references in the barrier mbb.
|
||||||
SmallPtrSet<MachineInstr*, 4> RefsInMBB;
|
SmallPtrSet<MachineInstr*, 4> RefsInMBB;
|
||||||
for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
|
for (MachineRegisterInfo::reg_iterator I = MRI->reg_begin(CurrLI->reg),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue