[llvm-commits] [llvm] r75938 - /llvm/trunk/test/CodeGen/SystemZ/05-LoadAddr.ll
Anton Korobeynikov
asl at math.spbu.ru
Thu Jul 16 06:49:01 PDT 2009
Author: asl
Date: Thu Jul 16 08:48:59 2009
New Revision: 75938
URL: http://llvm.org/viewvc/llvm-project?rev=75938&view=rev
Log:
Provide proper test :)
Modified:
llvm/trunk/test/CodeGen/SystemZ/05-LoadAddr.ll
Modified: llvm/trunk/test/CodeGen/SystemZ/05-LoadAddr.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/SystemZ/05-LoadAddr.ll?rev=75938&r1=75937&r2=75938&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/SystemZ/05-LoadAddr.ll (original)
+++ llvm/trunk/test/CodeGen/SystemZ/05-LoadAddr.ll Thu Jul 16 08:48:59 2009
@@ -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, at 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
+}
More information about the llvm-commits
mailing list