Gabor points out that we can't spell. :)
authorChris Lattner <sabre@nondot.org>
Fri, 24 Mar 2006 07:12:19 +0000 (07:12 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 24 Mar 2006 07:12:19 +0000 (07:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27049 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCInstrInfo.td
lib/Target/X86/README.txt
lib/Target/X86/X86ISelLowering.cpp

index fe9740ff6d79c8ef583ad89f65f2cdab41a5b370..b1772376f52beff009db00774c70e970c74fb6f6 100644 (file)
@@ -659,7 +659,7 @@ def FSQRTS : XForm_26<59, 22, (ops F4RC:$frD, F4RC:$frB),
 /// FMR is split into 3 versions, one for 4/8 byte FP, and one for extending.
 ///
 /// Note that these are defined as pseudo-ops on the PPC970 because they are
-/// often coallesced away and we don't want the dispatch group builder to think
+/// often coalesced away and we don't want the dispatch group builder to think
 /// that they will fill slots (which could cause the load of a LSU reject to
 /// sneak into a d-group with a store).
 def FMRS   : XForm_26<63, 72, (ops F4RC:$frD, F4RC:$frB),
index 0cf645c7a8f136ceecde8facdce0406c364e23c8..91bdb538e94ae09fd61c4fb6ef9bca1ea2cc4568 100644 (file)
@@ -547,7 +547,7 @@ feasible.
 
 //===---------------------------------------------------------------------===//
 
-Teach the coallescer to commute 2-addr instructions, allowing us to eliminate
+Teach the coalescer to commute 2-addr instructions, allowing us to eliminate
 the reg-reg copy in this example:
 
 float foo(int *x, float *y, unsigned c) {
@@ -642,7 +642,7 @@ lambda, siod, optimizer-eval, ackermann, hash2, nestedloop, strcat, and Treesor.
 
 //===---------------------------------------------------------------------===//
 
-Teach the coallescer to coales vregs of different register classes. e.g. FR32 /
+Teach the coalescer to coalesce vregs of different register classes. e.g. FR32 /
 FR64 to VR128.
 
 //===---------------------------------------------------------------------===//
index 540fc11c1ebcbae8c7cdcf222fb2b7e17ffa6682..5649d6461e5cba760b1c1396630f7ad06900a0e4 100644 (file)
@@ -660,10 +660,10 @@ static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
 // EDX".  Anything more is illegal.
 //
 // FIXME: The linscan register allocator currently has problem with
-// coallescing.  At the time of this writing, whenever it decides to coallesce
+// coalescing.  At the time of this writing, whenever it decides to coalesce
 // a physreg with a virtreg, this increases the size of the physreg's live
 // range, and the live range cannot ever be reduced.  This causes problems if
-// too many physregs are coalleced with virtregs, which can cause the register
+// too many physregs are coaleced with virtregs, which can cause the register
 // allocator to wedge itself.
 //
 // This code triggers this problem more often if we pass args in registers,