forked from OSchip/llvm-project
RegAllocGreedy: Fix typo
This commit is contained in:
parent
ae8d35b8ee
commit
395f8ccfc9
|
@ -1977,9 +1977,9 @@ unsigned RAGreedy::tryLastChanceRecoloring(const LiveInterval &VirtReg,
|
|||
continue;
|
||||
}
|
||||
|
||||
// RecoloringCandidates contains all the virtual registers that interfer
|
||||
// with VirtReg on PhysReg (or one of its aliases).
|
||||
// Enqueue them for recoloring and perform the actual recoloring.
|
||||
// RecoloringCandidates contains all the virtual registers that interfere
|
||||
// with VirtReg on PhysReg (or one of its aliases). Enqueue them for
|
||||
// recoloring and perform the actual recoloring.
|
||||
PQueue RecoloringQueue;
|
||||
for (const LiveInterval *RC : RecoloringCandidates) {
|
||||
Register ItVirtReg = RC->reg();
|
||||
|
|
Loading…
Reference in New Issue