[llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll 2005-12-12-MissingFCMov.ll 2006-01-18-MissedGlobal.ll 2006-01-26-VaargBreak.ll 2006-04-04-zextload.ll 2006-07-03-ASMFormalLowering.ll 2006-11-01-vastart.ll add.ll bic.ll bsr.ll call_adj.ll cmov.ll cmpbge.ll ctlz.ll ctlz_e.ll ctpop.ll eqv.ll i32_sub_1.ll jmp_table.ll mul5.ll neg1.ll not.ll ornot.ll rpcc.ll srl_and.ll zapnot.ll zapnot2.ll zapnot3.ll zapnot4.ll
Reid Spencer
reid at x10sys.com
Fri Dec 1 20:25:22 PST 2006
Changes in directory llvm/test/Regression/CodeGen/Alpha:
2005-07-12-TwoMallocCalls.ll updated: 1.1 -> 1.2
2005-12-12-MissingFCMov.ll updated: 1.1 -> 1.2
2006-01-18-MissedGlobal.ll updated: 1.1 -> 1.2
2006-01-26-VaargBreak.ll updated: 1.1 -> 1.2
2006-04-04-zextload.ll updated: 1.1 -> 1.2
2006-07-03-ASMFormalLowering.ll updated: 1.3 -> 1.4
2006-11-01-vastart.ll updated: 1.1 -> 1.2
add.ll updated: 1.2 -> 1.3
bic.ll updated: 1.2 -> 1.3
bsr.ll updated: 1.3 -> 1.4
call_adj.ll updated: 1.1 -> 1.2
cmov.ll updated: 1.2 -> 1.3
cmpbge.ll updated: 1.1 -> 1.2
ctlz.ll updated: 1.5 -> 1.6
ctlz_e.ll updated: 1.1 -> 1.2
ctpop.ll updated: 1.6 -> 1.7
eqv.ll updated: 1.2 -> 1.3
i32_sub_1.ll updated: 1.1 -> 1.2
jmp_table.ll updated: 1.5 -> 1.6
mul5.ll updated: 1.4 -> 1.5
neg1.ll updated: 1.3 -> 1.4
not.ll updated: 1.2 -> 1.3
ornot.ll updated: 1.2 -> 1.3
rpcc.ll updated: 1.3 -> 1.4
srl_and.ll updated: 1.1 -> 1.2
zapnot.ll updated: 1.1 -> 1.2
zapnot2.ll updated: 1.3 -> 1.4
zapnot3.ll updated: 1.1 -> 1.2
zapnot4.ll updated: 1.1 -> 1.2
---
Log message:
Use the llvm-upgrade program to upgrade llvm assembly.
---
Diffs of the changes: (+55 -55)
2005-07-12-TwoMallocCalls.ll | 2 +-
2005-12-12-MissingFCMov.ll | 2 +-
2006-01-18-MissedGlobal.ll | 2 +-
2006-01-26-VaargBreak.ll | 2 +-
2006-04-04-zextload.ll | 2 +-
2006-07-03-ASMFormalLowering.ll | 2 +-
2006-11-01-vastart.ll | 2 +-
add.ll | 30 +++++++++++++++---------------
bic.ll | 2 +-
bsr.ll | 2 +-
call_adj.ll | 2 +-
cmov.ll | 4 ++--
cmpbge.ll | 2 +-
ctlz.ll | 10 +++++-----
ctlz_e.ll | 2 +-
ctpop.ll | 10 +++++-----
eqv.ll | 2 +-
i32_sub_1.ll | 2 +-
jmp_table.ll | 8 ++++----
mul5.ll | 2 +-
neg1.ll | 2 +-
not.ll | 2 +-
ornot.ll | 2 +-
rpcc.ll | 2 +-
srl_and.ll | 2 +-
zapnot.ll | 2 +-
zapnot2.ll | 2 +-
zapnot3.ll | 2 +-
zapnot4.ll | 2 +-
29 files changed, 55 insertions(+), 55 deletions(-)
Index: llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll:1.1 llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll:1.1 Tue Jul 12 20:57:39 2005
+++ llvm/test/Regression/CodeGen/Alpha/2005-07-12-TwoMallocCalls.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; There should be exactly two calls here (memset and malloc), no more.
-; RUN: llvm-as < %s | llc -march=alpha | grep jsr | wc -l | grep 2
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep jsr | wc -l | grep 2
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/2005-12-12-MissingFCMov.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2005-12-12-MissingFCMov.ll:1.1 llvm/test/Regression/CodeGen/Alpha/2005-12-12-MissingFCMov.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/2005-12-12-MissingFCMov.ll:1.1 Thu Jan 26 11:43:42 2006
+++ llvm/test/Regression/CodeGen/Alpha/2005-12-12-MissingFCMov.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; This shouldn't crash
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
; ModuleID = 'bugpoint-reduced-simplified.bc'
target endian = little
Index: llvm/test/Regression/CodeGen/Alpha/2006-01-18-MissedGlobal.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2006-01-18-MissedGlobal.ll:1.1 llvm/test/Regression/CodeGen/Alpha/2006-01-18-MissedGlobal.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/2006-01-18-MissedGlobal.ll:1.1 Wed Jan 18 16:59:33 2006
+++ llvm/test/Regression/CodeGen/Alpha/2006-01-18-MissedGlobal.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; The global symbol should be legalized
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
target endian = little
target pointersize = 64
Index: llvm/test/Regression/CodeGen/Alpha/2006-01-26-VaargBreak.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2006-01-26-VaargBreak.ll:1.1 llvm/test/Regression/CodeGen/Alpha/2006-01-26-VaargBreak.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/2006-01-26-VaargBreak.ll:1.1 Thu Jan 26 11:43:42 2006
+++ llvm/test/Regression/CodeGen/Alpha/2006-01-26-VaargBreak.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; This shouldn't crash
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
; ModuleID = 'simp.bc'
target endian = little
Index: llvm/test/Regression/CodeGen/Alpha/2006-04-04-zextload.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2006-04-04-zextload.ll:1.1 llvm/test/Regression/CodeGen/Alpha/2006-04-04-zextload.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/2006-04-04-zextload.ll:1.1 Tue Apr 4 12:38:31 2006
+++ llvm/test/Regression/CodeGen/Alpha/2006-04-04-zextload.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
target endian = little
target pointersize = 64
Index: llvm/test/Regression/CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll:1.3 llvm/test/Regression/CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll:1.4
--- llvm/test/Regression/CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll:1.3 Mon Jul 10 20:39:30 2006
+++ llvm/test/Regression/CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
target endian = little
target pointersize = 64
Index: llvm/test/Regression/CodeGen/Alpha/2006-11-01-vastart.ll
diff -u llvm/test/Regression/CodeGen/Alpha/2006-11-01-vastart.ll:1.1 llvm/test/Regression/CodeGen/Alpha/2006-11-01-vastart.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/2006-11-01-vastart.ll:1.1 Wed Nov 1 21:04:37 2006
+++ llvm/test/Regression/CodeGen/Alpha/2006-11-01-vastart.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
target datalayout = "e-p:64:64"
target endian = little
Index: llvm/test/Regression/CodeGen/Alpha/add.ll
diff -u llvm/test/Regression/CodeGen/Alpha/add.ll:1.2 llvm/test/Regression/CodeGen/Alpha/add.ll:1.3
--- llvm/test/Regression/CodeGen/Alpha/add.ll:1.2 Tue Nov 7 10:32:55 2006
+++ llvm/test/Regression/CodeGen/Alpha/add.ll Fri Dec 1 22:23:08 2006
@@ -1,20 +1,20 @@
;test all the shifted and signextending adds and subs with and without consts
-; RUN: llvm-as < %s | llc -march=alpha | grep ' addl' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep ' addq' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep ' subl' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep ' subq' |wc -l |grep 1 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 'lda $0,-100($16)' |wc -l |grep 1 &&
-
-; RUN: llvm-as < %s | llc -march=alpha | grep 's4addl' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 's8addl' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 's4addq' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 's8addq' |wc -l |grep 2 &&
-
-; RUN: llvm-as < %s | llc -march=alpha | grep 's4subl' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 's8subl' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 's4subq' |wc -l |grep 2 &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 's8subq' |wc -l |grep 2
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep ' addl' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep ' addq' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep ' subl' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep ' subq' |wc -l |grep 1 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'lda $0,-100($16)' |wc -l |grep 1 &&
+
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's4addl' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's8addl' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's4addq' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's8addq' |wc -l |grep 2 &&
+
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's4subl' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's8subl' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's4subq' |wc -l |grep 2 &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 's8subq' |wc -l |grep 2
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/bic.ll
diff -u llvm/test/Regression/CodeGen/Alpha/bic.ll:1.2 llvm/test/Regression/CodeGen/Alpha/bic.ll:1.3
--- llvm/test/Regression/CodeGen/Alpha/bic.ll:1.2 Fri Apr 8 11:55:15 2005
+++ llvm/test/Regression/CodeGen/Alpha/bic.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the bic instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'bic'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'bic'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/bsr.ll
diff -u llvm/test/Regression/CodeGen/Alpha/bsr.ll:1.3 llvm/test/Regression/CodeGen/Alpha/bsr.ll:1.4
--- llvm/test/Regression/CodeGen/Alpha/bsr.ll:1.3 Thu Apr 13 12:52:32 2006
+++ llvm/test/Regression/CodeGen/Alpha/bsr.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens the bsr instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'bsr'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'bsr'
implementation
Index: llvm/test/Regression/CodeGen/Alpha/call_adj.ll
diff -u llvm/test/Regression/CodeGen/Alpha/call_adj.ll:1.1 llvm/test/Regression/CodeGen/Alpha/call_adj.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/call_adj.ll:1.1 Wed May 17 14:23:31 2006
+++ llvm/test/Regression/CodeGen/Alpha/call_adj.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
;All this should do is not crash
-;RUN: llvm-as < %s | llc -march=alpha
+;RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha
target endian = little
target pointersize = 64
Index: llvm/test/Regression/CodeGen/Alpha/cmov.ll
diff -u llvm/test/Regression/CodeGen/Alpha/cmov.ll:1.2 llvm/test/Regression/CodeGen/Alpha/cmov.ll:1.3
--- llvm/test/Regression/CodeGen/Alpha/cmov.ll:1.2 Wed Sep 20 10:04:55 2006
+++ llvm/test/Regression/CodeGen/Alpha/cmov.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
-; RUN: llvm-as < %s | llc -march=alpha | not grep cmovlt
-; RUN: llvm-as < %s | llc -march=alpha | grep cmoveq
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | not grep cmovlt
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep cmoveq
long %cmov_lt(long %a, long %c) {
entry:
Index: llvm/test/Regression/CodeGen/Alpha/cmpbge.ll
diff -u llvm/test/Regression/CodeGen/Alpha/cmpbge.ll:1.1 llvm/test/Regression/CodeGen/Alpha/cmpbge.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/cmpbge.ll:1.1 Tue Oct 10 22:59:48 2006
+++ llvm/test/Regression/CodeGen/Alpha/cmpbge.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha | grep cmpbge | wc -l | grep 2
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep cmpbge | wc -l | grep 2
bool %test1(ulong %A, ulong %B) {
%C = and ulong %A, 255
Index: llvm/test/Regression/CodeGen/Alpha/ctlz.ll
diff -u llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.5 llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.6
--- llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.5 Fri Sep 30 15:30:24 2005
+++ llvm/test/Regression/CodeGen/Alpha/ctlz.ll Fri Dec 1 22:23:08 2006
@@ -1,9 +1,9 @@
; Make sure this testcase codegens to the ctlz instruction
-; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev67 | grep -i 'ctlz'
-; RUN: llvm-as < %s | llc -march=alpha -mattr=+CIX | grep -i 'ctlz'
-; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev6 | not grep -i 'ctlz'
-; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev56 | not grep -i 'ctlz'
-; RUN: llvm-as < %s | llc -march=alpha -mattr=-CIX | not grep -i 'ctlz'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev67 | grep -i 'ctlz'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=+CIX | grep -i 'ctlz'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev6 | not grep -i 'ctlz'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev56 | not grep -i 'ctlz'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=-CIX | not grep -i 'ctlz'
declare ubyte %llvm.ctlz(ubyte)
Index: llvm/test/Regression/CodeGen/Alpha/ctlz_e.ll
diff -u llvm/test/Regression/CodeGen/Alpha/ctlz_e.ll:1.1 llvm/test/Regression/CodeGen/Alpha/ctlz_e.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/ctlz_e.ll:1.1 Wed May 11 12:23:41 2005
+++ llvm/test/Regression/CodeGen/Alpha/ctlz_e.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase does not use ctpop
-; RUN: llvm-as < %s | llc -march=alpha | grep -i 'ctpop' |wc -l |grep 0
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep -i 'ctpop' |wc -l |grep 0
declare ulong %llvm.ctlz(ulong)
Index: llvm/test/Regression/CodeGen/Alpha/ctpop.ll
diff -u llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.6 llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.7
--- llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.6 Fri Sep 30 15:30:24 2005
+++ llvm/test/Regression/CodeGen/Alpha/ctpop.ll Fri Dec 1 22:23:08 2006
@@ -1,9 +1,9 @@
; Make sure this testcase codegens to the ctpop instruction
-; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev67 | grep -i 'ctpop'
-; RUN: llvm-as < %s | llc -march=alpha -mattr=+CIX | grep -i 'ctpop'
-; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev6 | not grep -i 'ctpop'
-; RUN: llvm-as < %s | llc -march=alpha -mcpu=ev56 | not grep -i 'ctpop'
-; RUN: llvm-as < %s | llc -march=alpha -mattr=-CIX | not grep -i 'ctpop'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev67 | grep -i 'ctpop'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=+CIX | grep -i 'ctpop'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev6 | not grep -i 'ctpop'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mcpu=ev56 | not grep -i 'ctpop'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha -mattr=-CIX | not grep -i 'ctpop'
declare long %llvm.ctpop(long)
Index: llvm/test/Regression/CodeGen/Alpha/eqv.ll
diff -u llvm/test/Regression/CodeGen/Alpha/eqv.ll:1.2 llvm/test/Regression/CodeGen/Alpha/eqv.ll:1.3
--- llvm/test/Regression/CodeGen/Alpha/eqv.ll:1.2 Fri Apr 8 11:55:15 2005
+++ llvm/test/Regression/CodeGen/Alpha/eqv.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the eqv instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'eqv'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'eqv'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/i32_sub_1.ll
diff -u llvm/test/Regression/CodeGen/Alpha/i32_sub_1.ll:1.1 llvm/test/Regression/CodeGen/Alpha/i32_sub_1.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/i32_sub_1.ll:1.1 Fri Jul 22 16:53:35 2005
+++ llvm/test/Regression/CodeGen/Alpha/i32_sub_1.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the ctpop instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep -i 'subl $16,1,$0'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep -i 'subl $16,1,$0'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/jmp_table.ll
diff -u llvm/test/Regression/CodeGen/Alpha/jmp_table.ll:1.5 llvm/test/Regression/CodeGen/Alpha/jmp_table.ll:1.6
--- llvm/test/Regression/CodeGen/Alpha/jmp_table.ll:1.5 Tue Oct 10 23:29:42 2006
+++ llvm/test/Regression/CodeGen/Alpha/jmp_table.ll Fri Dec 1 22:23:08 2006
@@ -1,8 +1,8 @@
; try to check that we have the most important instructions, which shouldn't appear otherwise
-; RUN: llvm-as < %s | llc -march=alpha | grep 'jmp' &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 'gprel32' &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 'ldl' &&
-; RUN: llvm-as < %s | llc -march=alpha | grep 'rodata'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'jmp' &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'gprel32' &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'ldl' &&
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'rodata'
target endian = little
target pointersize = 64
Index: llvm/test/Regression/CodeGen/Alpha/mul5.ll
diff -u llvm/test/Regression/CodeGen/Alpha/mul5.ll:1.4 llvm/test/Regression/CodeGen/Alpha/mul5.ll:1.5
--- llvm/test/Regression/CodeGen/Alpha/mul5.ll:1.4 Tue Oct 31 13:50:55 2006
+++ llvm/test/Regression/CodeGen/Alpha/mul5.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase does not use mulq
-; RUN: llvm-as < %s | llc -march=alpha | grep -i 'mul' |wc -l |grep 0
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep -i 'mul' |wc -l |grep 0
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/neg1.ll
diff -u llvm/test/Regression/CodeGen/Alpha/neg1.ll:1.3 llvm/test/Regression/CodeGen/Alpha/neg1.ll:1.4
--- llvm/test/Regression/CodeGen/Alpha/neg1.ll:1.3 Fri May 13 14:49:02 2005
+++ llvm/test/Regression/CodeGen/Alpha/neg1.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the lda -1 instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep '\-1'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep '\-1'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/not.ll
diff -u llvm/test/Regression/CodeGen/Alpha/not.ll:1.2 llvm/test/Regression/CodeGen/Alpha/not.ll:1.3
--- llvm/test/Regression/CodeGen/Alpha/not.ll:1.2 Mon Jan 16 10:34:39 2006
+++ llvm/test/Regression/CodeGen/Alpha/not.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the ornot instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'eqv'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'eqv'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/ornot.ll
diff -u llvm/test/Regression/CodeGen/Alpha/ornot.ll:1.2 llvm/test/Regression/CodeGen/Alpha/ornot.ll:1.3
--- llvm/test/Regression/CodeGen/Alpha/ornot.ll:1.2 Fri Apr 8 11:55:15 2005
+++ llvm/test/Regression/CodeGen/Alpha/ornot.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the ornot instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'ornot'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'ornot'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/rpcc.ll
diff -u llvm/test/Regression/CodeGen/Alpha/rpcc.ll:1.3 llvm/test/Regression/CodeGen/Alpha/rpcc.ll:1.4
--- llvm/test/Regression/CodeGen/Alpha/rpcc.ll:1.3 Mon Jan 16 15:22:42 2006
+++ llvm/test/Regression/CodeGen/Alpha/rpcc.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha | grep rpcc
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep rpcc
declare ulong %llvm.readcyclecounter()
Index: llvm/test/Regression/CodeGen/Alpha/srl_and.ll
diff -u llvm/test/Regression/CodeGen/Alpha/srl_and.ll:1.1 llvm/test/Regression/CodeGen/Alpha/srl_and.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/srl_and.ll:1.1 Mon Feb 13 12:52:01 2006
+++ llvm/test/Regression/CodeGen/Alpha/srl_and.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the zapnot instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'zapnot'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'zapnot'
ulong %foo(ulong %y) {
entry:
Index: llvm/test/Regression/CodeGen/Alpha/zapnot.ll
diff -u llvm/test/Regression/CodeGen/Alpha/zapnot.ll:1.1 llvm/test/Regression/CodeGen/Alpha/zapnot.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/zapnot.ll:1.1 Wed Apr 13 08:00:16 2005
+++ llvm/test/Regression/CodeGen/Alpha/zapnot.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the bic instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'zapnot'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'zapnot'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/zapnot2.ll
diff -u llvm/test/Regression/CodeGen/Alpha/zapnot2.ll:1.3 llvm/test/Regression/CodeGen/Alpha/zapnot2.ll:1.4
--- llvm/test/Regression/CodeGen/Alpha/zapnot2.ll:1.3 Sun Jan 1 16:14:31 2006
+++ llvm/test/Regression/CodeGen/Alpha/zapnot2.ll Fri Dec 1 22:23:08 2006
@@ -1,5 +1,5 @@
; Make sure this testcase codegens to the zapnot instruction
-; RUN: llvm-as < %s | llc -march=alpha | grep 'zapnot'
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep 'zapnot'
implementation ; Functions:
Index: llvm/test/Regression/CodeGen/Alpha/zapnot3.ll
diff -u llvm/test/Regression/CodeGen/Alpha/zapnot3.ll:1.1 llvm/test/Regression/CodeGen/Alpha/zapnot3.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/zapnot3.ll:1.1 Tue Oct 10 20:47:08 2006
+++ llvm/test/Regression/CodeGen/Alpha/zapnot3.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha | grep zapnot | wc -l | grep 2
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep zapnot | wc -l | grep 2
ulong %foo(ulong %y) {
%tmp = and ulong %y, 65535
Index: llvm/test/Regression/CodeGen/Alpha/zapnot4.ll
diff -u llvm/test/Regression/CodeGen/Alpha/zapnot4.ll:1.1 llvm/test/Regression/CodeGen/Alpha/zapnot4.ll:1.2
--- llvm/test/Regression/CodeGen/Alpha/zapnot4.ll:1.1 Wed Oct 11 00:10:19 2006
+++ llvm/test/Regression/CodeGen/Alpha/zapnot4.ll Fri Dec 1 22:23:08 2006
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -march=alpha | grep zapnot
+; RUN: llvm-upgrade < %s | llvm-as | llc -march=alpha | grep zapnot
ulong %foo(ulong %y) {
%tmp = shl ulong %y, ubyte 3 ; <ulong> [#uses=1]
More information about the llvm-commits
mailing list