[RAGreedy] Fix minor typo in comment. NFC
authorMarcello Maggioni <hayarms@gmail.com>
Thu, 12 Mar 2020 15:15:04 +0000 (08:15 -0700)
committerMarcello Maggioni <hayarms@gmail.com>
Thu, 12 Mar 2020 15:15:04 +0000 (08:15 -0700)
llvm/lib/CodeGen/RegAllocGreedy.cpp

index 434bc0e..a5871a5 100644 (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;
     }