[llvm-commits] CVS: llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx 2006-03-02-InstrSchedBug.ll 2006-05-01-SchedCausingSpills.ll 2006-05-02-InstrSched1.ll 2006-05-02-InstrSched2.ll iabs.ll
Reid Spencer
reid at x10sys.com
Mon Apr 16 08:16:37 PDT 2007
Changes in directory llvm/test/CodeGen/X86:
2003-08-03-CallArgLiveRanges.llx updated: 1.4 -> 1.5
2006-03-02-InstrSchedBug.ll updated: 1.2 -> 1.3
2006-05-01-SchedCausingSpills.ll updated: 1.2 -> 1.3
2006-05-02-InstrSched1.ll updated: 1.4 -> 1.5
2006-05-02-InstrSched2.ll updated: 1.4 -> 1.5
iabs.ll updated: 1.1 -> 1.2
---
Log message:
For PR1319: http://llvm.org/PR1319 :
Fix test syntax per new rules.
---
Diffs of the changes: (+13 -6)
2003-08-03-CallArgLiveRanges.llx | 2 +-
2006-03-02-InstrSchedBug.ll | 3 ++-
2006-05-01-SchedCausingSpills.ll | 3 ++-
2006-05-02-InstrSched1.ll | 5 ++++-
2006-05-02-InstrSched2.ll | 3 ++-
iabs.ll | 3 ++-
6 files changed, 13 insertions(+), 6 deletions(-)
Index: llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx
diff -u llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx:1.4 llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx:1.5
--- llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx:1.4 Fri Dec 1 22:23:08 2006
+++ llvm/test/CodeGen/X86/2003-08-03-CallArgLiveRanges.llx Mon Apr 16 10:15:51 2007
@@ -3,7 +3,7 @@
; it makes a ton of annoying overlapping live ranges. This code should not
; cause spills!
;
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats 2>&1 | not grep spilled
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats |& not grep spilled
target endian = little
target pointersize = 32
Index: llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll
diff -u llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll:1.2 llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll:1.3
--- llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll:1.2 Fri Dec 1 22:23:08 2006
+++ llvm/test/CodeGen/X86/2006-03-02-InstrSchedBug.ll Mon Apr 16 10:15:51 2007
@@ -1,4 +1,5 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats 2>&1 | grep 'asm-printer' | grep 7
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats |& \
+; RUN: grep asm-printer | grep 7
int %g(int %a, int %b) {
%tmp.1 = shl int %b, ubyte 1
Index: llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll
diff -u llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll:1.2 llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll:1.3
--- llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll:1.2 Fri Dec 1 22:23:08 2006
+++ llvm/test/CodeGen/X86/2006-05-01-SchedCausingSpills.ll Mon Apr 16 10:15:51 2007
@@ -1,4 +1,5 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah -stats 2>&1 | not grep 'Number of register spills'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mcpu=yonah -stats |& \
+; RUN: not grep {Number of register spills}
int %foo(<4 x float>* %a, <4 x float>* %b, <4 x float>* %c, <4 x float>* %d) {
%tmp44 = load <4 x float>* %a ; <<4 x float>> [#uses=9]
Index: llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll
diff -u llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll:1.4 llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll:1.5
--- llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll:1.4 Mon Jan 1 23:53:06 2007
+++ llvm/test/CodeGen/X86/2006-05-02-InstrSched1.ll Mon Apr 16 10:15:51 2007
@@ -1,4 +1,7 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -relocation-model=static -stats 2>&1 | grep "asm-printer" | grep 14
+; RUN: llvm-upgrade < %s | llvm-as | \
+; RUN: llc -march=x86 -relocation-model=static -stats |& \
+; RUN: grep asm-printer | grep 14
+;
%size20 = external global uint ; <uint*> [#uses=1]
%in5 = external global ubyte* ; <ubyte**> [#uses=1]
Index: llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll
diff -u llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll:1.4 llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll:1.5
--- llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll:1.4 Mon Jan 8 17:57:40 2007
+++ llvm/test/CodeGen/X86/2006-05-02-InstrSched2.ll Mon Apr 16 10:15:51 2007
@@ -1,4 +1,5 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats 2>&1 | grep "asm-printer" | grep 18
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -stats |& \
+; RUN: grep asm-printer | grep 18
void %_ZN9__gnu_cxx9hashtableISt4pairIKPKciES3_NS_4hashIS3_EESt10_Select1stIS5_E5eqstrSaIiEE14find_or_insertERKS5__cond_true456.i(sbyte* %tmp435.i, uint* %tmp449.i.out) {
newFuncRoot:
Index: llvm/test/CodeGen/X86/iabs.ll
diff -u llvm/test/CodeGen/X86/iabs.ll:1.1 llvm/test/CodeGen/X86/iabs.ll:1.2
--- llvm/test/CodeGen/X86/iabs.ll:1.1 Wed Apr 11 00:02:57 2007
+++ llvm/test/CodeGen/X86/iabs.ll Mon Apr 16 10:15:51 2007
@@ -1,4 +1,5 @@
-; RUN: llvm-as < %s | llc -march=x86-64 -stats 2>&1 | grep '6 .*Number of machine instrs printed'
+; RUN: llvm-as < %s | llc -march=x86-64 -stats |& \
+; RUN: grep {6 .*Number of machine instrs printed}
;; Integer absolute value, should produce something at least as good as:
;; movl %edi, %eax
More information about the llvm-commits
mailing list