[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/overlap-add.ll overlap-shift.ll

Chris Lattner lattner at cs.uiuc.edu
Thu Mar 23 23:13:48 PST 2006



Changes in directory llvm/test/Regression/CodeGen/X86:

overlap-add.ll updated: 1.2 -> 1.3
overlap-shift.ll updated: 1.3 -> 1.4
---
Log message:

fix two spellos


---
Diffs of the changes:  (+2 -2)

 overlap-add.ll   |    2 +-
 overlap-shift.ll |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/test/Regression/CodeGen/X86/overlap-add.ll
diff -u llvm/test/Regression/CodeGen/X86/overlap-add.ll:1.2 llvm/test/Regression/CodeGen/X86/overlap-add.ll:1.3
--- llvm/test/Regression/CodeGen/X86/overlap-add.ll:1.2	Sun Jan  2 13:01:33 2005
+++ llvm/test/Regression/CodeGen/X86/overlap-add.ll	Fri Mar 24 01:13:29 2006
@@ -1,5 +1,5 @@
 ;; X's live range extends beyond the shift, so the register allocator
-;; cannot coallesce it with Y.  Because of this, a copy needs to be
+;; cannot coalesce it with Y.  Because of this, a copy needs to be
 ;; emitted before the shift to save the register value before it is
 ;; clobbered.  However, this copy is not needed if the register
 ;; allocator turns the shift into an LEA.  This also occurs for ADD.


Index: llvm/test/Regression/CodeGen/X86/overlap-shift.ll
diff -u llvm/test/Regression/CodeGen/X86/overlap-shift.ll:1.3 llvm/test/Regression/CodeGen/X86/overlap-shift.ll:1.4
--- llvm/test/Regression/CodeGen/X86/overlap-shift.ll:1.3	Tue Feb 28 10:39:56 2006
+++ llvm/test/Regression/CodeGen/X86/overlap-shift.ll	Fri Mar 24 01:13:29 2006
@@ -1,5 +1,5 @@
 ;; X's live range extends beyond the shift, so the register allocator
-;; cannot coallesce it with Y.  Because of this, a copy needs to be
+;; cannot coalesce it with Y.  Because of this, a copy needs to be
 ;; emitted before the shift to save the register value before it is
 ;; clobbered.  However, this copy is not needed if the register
 ;; allocator turns the shift into an LEA.  This also occurs for ADD.






More information about the llvm-commits mailing list