aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/SystemZ
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 13:48:59 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 13:48:59 +0000
commit81c0325cdf7442c2948fbf3b8822d56d46a0d988 (patch)
tree72308c0f070c0f52162a22929656bb5273718ee4 /test/CodeGen/SystemZ
parentc4368a1507ac072a4b5da5d7dbcbf66bdfe6595f (diff)
downloadexternal_llvm-81c0325cdf7442c2948fbf3b8822d56d46a0d988.zip
external_llvm-81c0325cdf7442c2948fbf3b8822d56d46a0d988.tar.gz
external_llvm-81c0325cdf7442c2948fbf3b8822d56d46a0d988.tar.bz2
Provide proper test :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75938 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/SystemZ')
-rw-r--r--test/CodeGen/SystemZ/05-LoadAddr.ll19
1 files changed, 9 insertions, 10 deletions
diff --git a/test/CodeGen/SystemZ/05-LoadAddr.ll b/test/CodeGen/SystemZ/05-LoadAddr.ll
index 90f01c1..bbf381c 100644
--- a/test/CodeGen/SystemZ/05-LoadAddr.ll
+++ b/test/CodeGen/SystemZ/05-LoadAddr.ll
@@ -1,12 +1,11 @@
+; RUN: llvm-as < %s | llc | grep lay | count 1
+target datalayout = "E-p:64:64:64-i1:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128"
+target triple = "s390x-unknown-linux-gnu"
- .text
- .align 4
- .globl foo
- .type foo,@function
-foo:
-.BB1_0: # entry
- sllg %r1, %r3, 3
- lay %r2, 8(%r1,%r2)
- br %r14
- .size foo, .-foo
+define i64* @foo(i64* %a, i64 %idx) nounwind readnone {
+entry:
+ %add.ptr.sum = add i64 %idx, 1 ; <i64> [#uses=1]
+ %add.ptr2 = getelementptr i64* %a, i64 %add.ptr.sum ; <i64*> [#uses=1]
+ ret i64* %add.ptr2
+}