summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-str_pre.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-07-03 00:06:39 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-07-03 00:06:39 +0000
commit6d94f1119644393c0b3e58ad666bb1d020770951 (patch)
tree28037222a6dd41781ad648598c93077944d8db6f /test/CodeGen/Thumb2/thumb2-str_pre.ll
parent0d86e2fa589d1a3261fa942bea2ad0b4702e198b (diff)
downloadllvm-6d94f1119644393c0b3e58ad666bb1d020770951.tar.gz
llvm-6d94f1119644393c0b3e58ad666bb1d020770951.tar.bz2
llvm-6d94f1119644393c0b3e58ad666bb1d020770951.tar.xz
Added indexed stores.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb2/thumb2-str_pre.ll')
-rw-r--r--test/CodeGen/Thumb2/thumb2-str_pre.ll18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/Thumb2/thumb2-str_pre.ll b/test/CodeGen/Thumb2/thumb2-str_pre.ll
new file mode 100644
index 0000000000..1e93b70df5
--- /dev/null
+++ b/test/CodeGen/Thumb2/thumb2-str_pre.ll
@@ -0,0 +1,18 @@
+; RUN: llvm-as < %s | llc -march=thumb -mattr=+thumb2 | \
+; RUN: grep {str.*\\!} | count 2
+
+define void @test1(i32* %X, i32* %A, i32** %dest) {
+ %B = load i32* %A ; <i32> [#uses=1]
+ %Y = getelementptr i32* %X, i32 4 ; <i32*> [#uses=2]
+ store i32 %B, i32* %Y
+ store i32* %Y, i32** %dest
+ ret void
+}
+
+define i16* @test2(i16* %X, i32* %A) {
+ %B = load i32* %A ; <i32> [#uses=1]
+ %Y = getelementptr i16* %X, i32 4 ; <i16*> [#uses=2]
+ %tmp = trunc i32 %B to i16 ; <i16> [#uses=1]
+ store i16 %tmp, i16* %Y
+ ret i16* %Y
+}