diff options
author | Mikael Holmen <mikael.holmen@ericsson.com> | 2017-09-27 11:27:50 +0000 |
---|---|---|
committer | Mikael Holmen <mikael.holmen@ericsson.com> | 2017-09-27 11:27:50 +0000 |
commit | 3bcc9f0c1f1c90ad83bba5ffdc984da922f569b3 (patch) | |
tree | ad44134a981d9cc4963e3e356e52ce9c2f97366e /llvm/lib/CodeGen/RegAllocGreedy.cpp | |
parent | d85a994ca6145fb87d7989d88013229101328087 (diff) | |
download | bcm5719-llvm-3bcc9f0c1f1c90ad83bba5ffdc984da922f569b3.tar.gz bcm5719-llvm-3bcc9f0c1f1c90ad83bba5ffdc984da922f569b3.zip |
[RegAllocGreedy] Fix spelling error, "inteference" -> "interference", NFC
llvm-svn: 314299
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocGreedy.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocGreedy.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/RegAllocGreedy.cpp b/llvm/lib/CodeGen/RegAllocGreedy.cpp index 6f0b7a936c5..1761a72930c 100644 --- a/llvm/lib/CodeGen/RegAllocGreedy.cpp +++ b/llvm/lib/CodeGen/RegAllocGreedy.cpp @@ -2085,7 +2085,7 @@ RAGreedy::mayRecolorAllInterferences(unsigned PhysReg, LiveInterval &VirtReg, if ((getStage(*Intf) == RS_Done && MRI->getRegClass(Intf->reg) == CurRC) || FixedRegisters.count(Intf->reg)) { - DEBUG(dbgs() << "Early abort: the inteference is not recolorable.\n"); + DEBUG(dbgs() << "Early abort: the interference is not recolorable.\n"); return false; } RecoloringCandidates.insert(Intf); @@ -2173,7 +2173,7 @@ unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg, // It is only possible to recolor virtual register interference. if (Matrix->checkInterference(VirtReg, PhysReg) > LiveRegMatrix::IK_VirtReg) { - DEBUG(dbgs() << "Some inteferences are not with virtual registers.\n"); + DEBUG(dbgs() << "Some interferences are not with virtual registers.\n"); continue; } @@ -2182,7 +2182,7 @@ unsigned RAGreedy::tryLastChanceRecoloring(LiveInterval &VirtReg, // the interferences. if (!mayRecolorAllInterferences(PhysReg, VirtReg, RecoloringCandidates, FixedRegisters)) { - DEBUG(dbgs() << "Some inteferences cannot be recolored.\n"); + DEBUG(dbgs() << "Some interferences cannot be recolored.\n"); continue; } |