aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/ARM/str_post.ll
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2008-02-17 20:02:20 +0000
committerTanya Lattner <tonic@nondot.org>2008-02-17 20:02:20 +0000
commit6263f94674cd0974b9a4cc525cbe70db65fc9939 (patch)
tree0a2fe45a96ee63e58e105f65957fc5b9ffe9dc0b /test/CodeGen/ARM/str_post.ll
parent456012c72e8596e36596ab3798b1d271477955ef (diff)
downloadexternal_llvm-6263f94674cd0974b9a4cc525cbe70db65fc9939.zip
external_llvm-6263f94674cd0974b9a4cc525cbe70db65fc9939.tar.gz
external_llvm-6263f94674cd0974b9a4cc525cbe70db65fc9939.tar.bz2
Remove llvm-upgrade.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47238 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/ARM/str_post.ll')
-rw-r--r--test/CodeGen/ARM/str_post.ll30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/CodeGen/ARM/str_post.ll b/test/CodeGen/ARM/str_post.ll
index 1dc4155..ba81380 100644
--- a/test/CodeGen/ARM/str_post.ll
+++ b/test/CodeGen/ARM/str_post.ll
@@ -1,21 +1,21 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | \
+; RUN: llvm-as < %s | llc -march=arm | \
; RUN: grep {strh .*\\\[.*\], #-4} | count 1
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | \
+; RUN: llvm-as < %s | llc -march=arm | \
; RUN: grep {str .*\\\[.*\],} | count 1
-short %test1(int *%X, short *%A) {
- %Y = load int* %X
- %tmp1 = cast int %Y to short
- store short %tmp1, short* %A
- %tmp2 = cast short* %A to short
- %tmp3 = sub short %tmp2, 4
- ret short %tmp3
+define i16 @test1(i32* %X, i16* %A) {
+ %Y = load i32* %X ; <i32> [#uses=1]
+ %tmp1 = trunc i32 %Y to i16 ; <i16> [#uses=1]
+ store i16 %tmp1, i16* %A
+ %tmp2 = ptrtoint i16* %A to i16 ; <i16> [#uses=1]
+ %tmp3 = sub i16 %tmp2, 4 ; <i16> [#uses=1]
+ ret i16 %tmp3
}
-int %test2(int *%X, int *%A) {
- %Y = load int* %X
- store int %Y, int* %A
- %tmp1 = cast int* %A to int
- %tmp2 = sub int %tmp1, 4
- ret int %tmp2
+define i32 @test2(i32* %X, i32* %A) {
+ %Y = load i32* %X ; <i32> [#uses=1]
+ store i32 %Y, i32* %A
+ %tmp1 = ptrtoint i32* %A to i32 ; <i32> [#uses=1]
+ %tmp2 = sub i32 %tmp1, 4 ; <i32> [#uses=1]
+ ret i32 %tmp2
}