RegAllocGreedy: Fix typo

This commit is contained in:
Matt Arsenault 2022-02-28 18:26:41 -05:00
parent ae8d35b8ee
commit 395f8ccfc9
1 changed files with 3 additions and 3 deletions

View File

@ -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();