OSDN Git Service

some more spelling changes
authorGabor Greif <ggreif@gmail.com>
Thu, 6 Mar 2008 10:51:21 +0000 (10:51 +0000)
committerGabor Greif <ggreif@gmail.com>
Thu, 6 Mar 2008 10:51:21 +0000 (10:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47996 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/StrongPHIElimination.cpp
lib/Target/X86/README.txt
test/CodeGen/Generic/2006-08-30-CoalescerCrash.ll [moved from test/CodeGen/Generic/2006-08-30-CoallescerCrash.ll with 100% similarity]

index 4611dae..b25a9d9 100644 (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.
index 65de926..47d0cb8 100644 (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.
 
 //===---------------------------------------------------------------------===//