forked from OSchip/llvm-project
parent
f26ae4e093
commit
f35395eac1
|
@ -2874,7 +2874,7 @@ void RegisterCoalescer::joinAllIntervals() {
|
||||||
|
|
||||||
std::vector<MBBPriorityInfo> MBBs;
|
std::vector<MBBPriorityInfo> MBBs;
|
||||||
MBBs.reserve(MF->size());
|
MBBs.reserve(MF->size());
|
||||||
for (MachineFunction::iterator I = MF->begin(), E = MF->end();I != E;++I){
|
for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I) {
|
||||||
MachineBasicBlock *MBB = &*I;
|
MachineBasicBlock *MBB = &*I;
|
||||||
MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
|
MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB),
|
||||||
JoinSplitEdges && isSplitEdge(MBB)));
|
JoinSplitEdges && isSplitEdge(MBB)));
|
||||||
|
|
Loading…
Reference in New Issue