From 81c0325cdf7442c2948fbf3b8822d56d46a0d988 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 16 Jul 2009 13:48:59 +0000 Subject: [PATCH] Provide proper test :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75938 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/SystemZ/05-LoadAddr.ll | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/test/CodeGen/SystemZ/05-LoadAddr.ll b/test/CodeGen/SystemZ/05-LoadAddr.ll index 90f01c1d49e..bbf381c0306 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 ; [#uses=1] + %add.ptr2 = getelementptr i64* %a, i64 %add.ptr.sum ; [#uses=1] + ret i64* %add.ptr2 +}