[RAGreedy] Fix minor typo in comment. NFC

This commit is contained in:
Marcello Maggioni 2020-03-12 08:15:04 -07:00
parent 352f16db87
commit ba5500f27a
1 changed files with 1 additions and 1 deletions

View File

@ -3080,7 +3080,7 @@ unsigned RAGreedy::selectOrSplitImpl(LiveInterval &VirtReg,
unsigned NewVRegSizeBefore = NewVRegs.size();
unsigned PhysReg = trySplit(VirtReg, Order, NewVRegs, FixedRegisters);
if (PhysReg || (NewVRegs.size() - NewVRegSizeBefore)) {
// If VirtReg got split, the eviction info is no longre relevant.
// If VirtReg got split, the eviction info is no longer relevant.
LastEvicted.clearEvicteeInfo(VirtReg.reg);
return PhysReg;
}