Commit ba5500f2 authored by Marcello Maggioni's avatar Marcello Maggioni
Browse files

[RAGreedy] Fix minor typo in comment. NFC

parent 352f16db
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }