some more spelling changes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47996 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gabor Greif 2008-03-06 10:51:21 +00:00
parent 29d8aa7877
commit 2cf36e0772
3 changed files with 2 additions and 2 deletions

View File

@ -522,7 +522,7 @@ void StrongPHIElimination::processBlock(MachineBasicBlock* MBB) {
} }
} }
/// processPHIUnion - Take a set of candidate registers to be coallesced when /// processPHIUnion - Take a set of candidate registers to be coalesced when
/// decomposing the PHI instruction. Use the DominanceForest to remove the ones /// decomposing the PHI instruction. Use the DominanceForest to remove the ones
/// that are known to interfere, and flag others that need to be checked for /// that are known to interfere, and flag others that need to be checked for
/// local interferences. /// local interferences.

View File

@ -1693,7 +1693,7 @@ LBB1_2: # bb7
subl %ecx, %eax subl %ecx, %eax
ret ret
The coallescer could coallesce "edx" with "eax" to avoid the movl in LBB1_2 The coalescer could coalesce "edx" with "eax" to avoid the movl in LBB1_2
if it commuted the addl in LBB1_1. if it commuted the addl in LBB1_1.
//===---------------------------------------------------------------------===// //===---------------------------------------------------------------------===//