[llvm-commits] CVS: llvm/test/Regression/CodeGen/X86/2006-12-19-IntelSyntax.ll bitcast.ll packed_struct.ll vec_ins_extract.ll x86-64-asm.ll

Reid Spencer reid at x10sys.com
Fri Dec 29 12:02:27 PST 2006



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

2006-12-19-IntelSyntax.ll updated: 1.1 -> 1.2
bitcast.ll updated: 1.1 -> 1.2
packed_struct.ll updated: 1.1 -> 1.2
vec_ins_extract.ll updated: 1.2 -> 1.3
x86-64-asm.ll updated: 1.1 -> 1.2
---
Log message:

Update tests that need to be run through llvm-upgrade. This is necessary
for upcoming changes to the llvm assembly grammar.


---
Diffs of the changes:  (+14 -12)

 2006-12-19-IntelSyntax.ll |    2 +-
 bitcast.ll                |    6 +++---
 packed_struct.ll          |   10 +++++-----
 vec_ins_extract.ll        |    6 ++++--
 x86-64-asm.ll             |    2 +-
 5 files changed, 14 insertions(+), 12 deletions(-)


Index: llvm/test/Regression/CodeGen/X86/2006-12-19-IntelSyntax.ll
diff -u llvm/test/Regression/CodeGen/X86/2006-12-19-IntelSyntax.ll:1.1 llvm/test/Regression/CodeGen/X86/2006-12-19-IntelSyntax.ll:1.2
--- llvm/test/Regression/CodeGen/X86/2006-12-19-IntelSyntax.ll:1.1	Tue Dec 19 13:29:50 2006
+++ llvm/test/Regression/CodeGen/X86/2006-12-19-IntelSyntax.ll	Fri Dec 29 14:01:32 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -x86-asm-syntax=intel
 ; PR1061
 
 target datalayout = "e-p:32:32"


Index: llvm/test/Regression/CodeGen/X86/bitcast.ll
diff -u llvm/test/Regression/CodeGen/X86/bitcast.ll:1.1 llvm/test/Regression/CodeGen/X86/bitcast.ll:1.2
--- llvm/test/Regression/CodeGen/X86/bitcast.ll:1.1	Tue Dec  5 12:21:52 2006
+++ llvm/test/Regression/CodeGen/X86/bitcast.ll	Fri Dec 29 14:01:32 2006
@@ -1,6 +1,6 @@
-; RUN: llvm-as < %s | llc &&
-; RUN: llvm-as < %s | llc -march=x86 &&
-; RUN: llvm-as < %s | llc -march=x86-64
+; RUN: llvm-upgrade < %s | llvm-as | llc &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86-64
 ; PR1033
 
 long %test1(double %t) {


Index: llvm/test/Regression/CodeGen/X86/packed_struct.ll
diff -u llvm/test/Regression/CodeGen/X86/packed_struct.ll:1.1 llvm/test/Regression/CodeGen/X86/packed_struct.ll:1.2
--- llvm/test/Regression/CodeGen/X86/packed_struct.ll:1.1	Fri Dec  8 12:54:15 2006
+++ llvm/test/Regression/CodeGen/X86/packed_struct.ll	Fri Dec 29 14:01:32 2006
@@ -1,8 +1,8 @@
-; RUN: llvm-as < %s | llc -march=x86 |grep "foos+5" &&
-; RUN: llvm-as < %s | llc -march=x86 |grep "foos+1" &&
-; RUN: llvm-as < %s | llc -march=x86 |grep "foos+9" &&
-; RUN: llvm-as < %s | llc -march=x86 |grep "bara+19" &&
-; RUN: llvm-as < %s | llc -march=x86 |grep "bara+4"
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "foos+5" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "foos+1" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "foos+9" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "bara+19" &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 |grep "bara+4"
 
 ; make sure we compute the correct offset for a packed structure
 


Index: llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll
diff -u llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll:1.2 llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll:1.3
--- llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll:1.2	Sun Dec 10 19:03:32 2006
+++ llvm/test/Regression/CodeGen/X86/vec_ins_extract.ll	Fri Dec 29 14:01:32 2006
@@ -1,5 +1,7 @@
-; RUN: llvm-as< %s | opt -scalarrepl -instcombine | llc -march=x86 -mcpu=yonah &&
-; RUN: llvm-as< %s | opt -scalarrepl -instcombine | llc -march=x86 -mcpu=yonah | not grep sub.*esp
+; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl -instcombine | \
+; RUN:    llc -march=x86 -mcpu=yonah &&
+; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl -instcombine | \
+; RUN:    llc -march=x86 -mcpu=yonah | not grep sub.*esp
 
 ; This checks that various insert/extract idiom work without going to the 
 ; stack.


Index: llvm/test/Regression/CodeGen/X86/x86-64-asm.ll
diff -u llvm/test/Regression/CodeGen/X86/x86-64-asm.ll:1.1 llvm/test/Regression/CodeGen/X86/x86-64-asm.ll:1.2
--- llvm/test/Regression/CodeGen/X86/x86-64-asm.ll:1.1	Mon Dec  4 16:37:48 2006
+++ llvm/test/Regression/CodeGen/X86/x86-64-asm.ll	Fri Dec 29 14:01:32 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc
+; RUN: llvm-upgrade < %s | llvm-as | llc
 ; PR1029
 
 target datalayout = "e-p:64:64"






More information about the llvm-commits mailing list