1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

some more spelling changes

llvm-svn: 47996
This commit is contained in:
Gabor Greif 2008-03-06 10:51:21 +00:00
parent d746841e93
commit 92e00c1e50
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
/// that are known to interfere, and flag others that need to be checked for
/// local interferences.

View File

@ -1693,7 +1693,7 @@ LBB1_2: # bb7
subl %ecx, %eax
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.
//===---------------------------------------------------------------------===//